/* General Styles */
body {
    background-color: #f8f9fa;
    padding-top: 64px;
    height: 100vh;
    overflow: hidden;
}

/* Navbar Styles */
.navbar {
    height: 64px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.search-container {
    max-width: 720px;
    width: 100%;
}

.search-container .input-group {
    border-radius: 8px;
    overflow: hidden;
}

.search-container .form-control {
    border: none;
    padding: 12px;
}

.search-container .input-group-text {
    border: none;
    padding: 12px;
}

/* Sidebar Styles */
.sidebar {
    background-color: white;
    height: calc(100vh - 64px);
    padding: 16px;
    border-right: 1px solid #e0e0e0;
    position: fixed;
    top: 64px;
    left: 0;
    width: 16.666667%; /* col-lg-2 equivalent */
    overflow-y: auto;
    z-index: 1020;
}

.sidebar .btn-primary {
    border-radius: 24px;
    padding: 8px 24px;
    font-weight: 500;
}

.sidebar .list-group-item {
    border: none;
    padding: 12px 16px;
    color: #5f6368;
    border-radius: 0 24px 24px 0;
    margin-right: 12px;
}

.sidebar .list-group-item:hover {
    background-color: #f1f3f4;
}

.sidebar .list-group-item.active {
    background-color: #e8f0fe;
    color: #1a73e8;
}

/* Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px;
}

.dropdown-item {
    padding: 8px 16px;
    border-radius: 4px;
    color: #202124;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #1a73e8;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modal-header {
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 24px;
}

.modal-footer {
    border-top: 1px solid #e0e0e0;
    padding: 16px 24px;
}

.modal-title {
    color: #202124;
    font-weight: 500;
}

/* Upload Area Styles */
.upload-area {
    border: 2px dashed #dadce0;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-area:hover,
.upload-area.dragover {
    border-color: #1a73e8;
    background-color: #e8f0fe;
}

.upload-area h5 {
    color: #202124;
    font-weight: 500;
}

.upload-area p {
    color: #5f6368;
    margin: 8px 0;
}

/* File List Styles */
#fileList, #videoList {
    max-height: 300px;
    overflow-y: auto;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 4px;
    background-color: #f8f9fa;
    margin-bottom: 8px;
}

.file-item i {
    font-size: 1.2rem;
    margin-right: 12px;
}

.file-item .file-info {
    flex-grow: 1;
}

.file-item .file-name {
    color: #202124;
    font-weight: 500;
    margin-bottom: 2px;
}

.file-item .file-size {
    color: #5f6368;
    font-size: 0.875rem;
}

.file-item .remove-file {
    color: #dc3545;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
}

.file-item .remove-file:hover {
    background-color: #f8f9fa;
}

/* Storage Widget Styles */
.storage-widget {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
    margin-top: auto;
}

.storage-widget h6 {
    color: #202124;
    font-weight: 500;
}

.storage-widget .progress {
    background-color: #e8f0fe;
    border-radius: 2px;
}

.storage-widget .progress-bar {
    background-color: #1a73e8;
    border-radius: 2px;
}

.storage-widget .btn-link {
    color: #1a73e8;
}

.storage-widget .btn-link:hover {
    color: #1557b0;
}

/* Main Content Styles */
.main-content {
    padding: 24px;
    height: calc(100vh - 64px);
    overflow-y: auto;
    margin-left: 16.666667%; /* col-lg-2 equivalent */
    width: 83.333333%; /* col-lg-10 equivalent */
}

.breadcrumb {
    margin-bottom: 24px;
}

.breadcrumb-item a {
    color: #5f6368;
    text-decoration: none;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.card-body {
    padding: 16px;
}

.card-text {
    margin: 0;
    font-size: 0.875rem;
    color: #5f6368;
}

/* Profile Page Styles */
.profile-container {
    max-width: 800px;
    margin: 0 auto;
}

.profile-header .card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.profile-avatar img {
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-info h4 {
    color: #202124;
    font-weight: 500;
}

.profile-info p {
    color: #5f6368;
}

/* Storage Section Styles */
.storage-section .progress {
    background-color: #e8f0fe;
    border-radius: 4px;
}

.storage-section .progress-bar {
    background-color: #1a73e8;
    border-radius: 4px;
}

/* Account Information Styles */
.account-section .form-label {
    color: #202124;
    font-weight: 500;
}

.account-section .form-control {
    border: 1px solid #dadce0;
    border-radius: 4px;
    padding: 8px 12px;
}

.account-section .form-control:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

/* Activity Section Styles */
.activity-item {
    padding: 8px 0;
}

.activity-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 50%;
}

.activity-content p {
    color: #202124;
    margin: 0;
}

.activity-content small {
    color: #5f6368;
}

/* Settings Page Styles */
.settings-container {
    max-width: 800px;
    margin: 0 auto;
}

.settings-section {
    margin-bottom: 32px;
}

.settings-section h5 {
    color: #202124;
    font-weight: 500;
}

.settings-section .form-switch {
    padding-left: 2.5em;
}

.settings-section .form-switch .form-check-input {
    width: 3em;
    height: 1.5em;
    margin-left: -2.5em;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .sidebar {
        width: 25%; /* col-md-3 equivalent */
    }
    .main-content {
        margin-left: 25%;
        width: 75%;
    }
}

@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        left: -100%;
        top: 64px;
        bottom: 0;
        width: 100%;
        z-index: 1000;
        transition: left 0.3s ease;
    }

    .sidebar.show {
        left: 0;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .profile-container {
        padding: 0 16px;
    }

    .profile-header .card-body {
        flex-direction: column;
        text-align: center;
    }

    .profile-avatar {
        margin-bottom: 16px;
    }

    .storage-widget {
        margin-top: 16px;
    }

    .modal-dialog {
        margin: 1rem;
    }
}

/* Auth Pages Styles */
.auth-page {
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 448px;
    margin: 0 auto;
}

.auth-box {
    background-color: #fff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 48px 40px 36px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.auth-logo {
    margin-bottom: 16px;
}

.auth-title {
    color: #202124;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 8px;
}

.auth-subtitle {
    color: #202124;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 32px;
}

.auth-form .form-floating {
    margin-bottom: 24px;
}

.auth-form .form-control {
    border: 1px solid #dadce0;
    border-radius: 4px;
    padding: 13px 15px;
    height: 56px;
}

.auth-form .form-control:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.auth-form .form-floating label {
    padding: 13px 15px;
    color: #5f6368;
}

.auth-form .form-check-label {
    color: #5f6368;
}

.auth-form .form-check-label a {
    color: #1a73e8;
    text-decoration: none;
}

.auth-form .form-check-label a:hover {
    text-decoration: underline;
}

.forgot-password, .guest-mode {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover, .guest-mode:hover {
    text-decoration: underline;
}

.auth-form .btn {
    padding: 12px 24px;
    font-weight: 500;
    border-radius: 4px;
}

.auth-form .btn-primary {
    background-color: #1a73e8;
    border-color: #1a73e8;
}

.auth-form .btn-primary:hover {
    background-color: #1557b0;
    border-color: #1557b0;
}

.auth-form .btn-outline-primary {
    color: #1a73e8;
    border-color: #1a73e8;
}

.auth-form .btn-outline-primary:hover {
    background-color: #f8f9fa;
    border-color: #1a73e8;
}

@media (max-width: 576px) {
    .auth-box {
        padding: 24px;
    }

    .auth-title {
        font-size: 20px;
    }

    .auth-subtitle {
        font-size: 14px;
    }
}

/* Email Verification Styles */
.email-address {
    color: #202124;
    font-weight: 500;
    margin-bottom: 24px;
}

.verification-code-container {
    text-align: center;
}

.verification-inputs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
}

.verification-input {
    width: 40px;
    height: 48px;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    padding: 0;
    border: 1px solid #dadce0;
    border-radius: 4px;
}

.verification-input:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.verification-input:invalid {
    border-color: #dc3545;
}

.resend-code {
    color: #5f6368;
    font-size: 14px;
}

.resend-link {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

.resend-link:hover {
    text-decoration: underline;
}

/* Recovery Options Styles */
.recovery-options {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    margin: 24px 0;
}

.recovery-options .form-check {
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.recovery-options .form-check:hover {
    background-color: #e8f0fe;
}

.recovery-options .form-check-input {
    margin-top: 0.3em;
}

.recovery-options .form-check-label {
    color: #202124;
    font-weight: 500;
    cursor: pointer;
}

.recovery-options .form-check-label i {
    color: #1a73e8;
}

.phone-input-container small {
    display: block;
    margin-top: 8px;
    color: #5f6368;
} 