/* main */

.main-content {
    flex: 1;
    /* padding: 0 1rem; */
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* navbar */
.navbar {
    background-color: #577c52 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    padding: 0.5rem 1rem;
    min-height: 60px; /* Set a consistent height */
    display: flex;
    align-items: center;
}

.navbar .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
    align-items: center; /* Center items vertically */
    height: 100%;
    display: flex;
}

.dropdown-menu {
    background-color: #577c52 !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-header {
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.85) !important;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.layout-container {
    display: flex;
    min-height: 100vh;
    padding: 1rem 2rem;
    gap: 2rem;
}

.container-padding {
    padding: 0 1rem;
}

.brand-text {
    font-size: 1.25rem;
}

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
}

.nav-item.dropdown {
    position: relative;
}

/* footer */
.footer {
    background-color: #577c52;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer a:hover {
    color: #fff !important;
}

/* pricing */
.card {
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.display-6 {
    font-weight: 600;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
}

/* scrubber */
.file-upload-area {
    border: 2px dashed #ccc;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
}

.file-upload-area:hover {
    border-color: #0d6efd;
    background: #f1f8ff;
}

#fileList {
    max-height: 300px;
    overflow-y: auto;
}

.container {
    margin-bottom: 3rem;
}