/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #000000;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    text-align: center;
    padding: 40px 0;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0 0 25px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logo i {
    color: #ffd700;
    transition: color 0.3s ease;
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Login Screen Styles */
.login-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.login-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header .logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-header .logo i {
    color: #78eb2b;
    transition: color 0.3s ease;
}

.login-header .tagline {
    color: #718096;
    font-size: 1rem;
    font-weight: 300;
}

/* Authentication Styles */
.auth-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
    min-width: auto;
    width: 100%;
}

.auth-form h3 {
    color: #2d3748;
    margin-bottom: 5px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.form-subtitle {
    color: #718096;
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.9rem;
}

.auth-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.auth-form input:focus {
    outline: none;
    border-color: #87CEEB;
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.1);
}

.auth-btn {
    width: 100%;
    padding: 14px 20px;
    background: #87CEEB;
    color: #333;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.auth-btn:hover {
    background: #5f9ea0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.3);
}

.form-footer {
    text-align: center;
    margin-top: 20px;
}

.form-footer p {
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
}

.form-footer a {
    color: #87CEEB;
    text-decoration: none;
    font-weight: 500;
}

.form-footer a:hover {
    text-decoration: underline;
}

.forgot-password-btn {
    background: none;
    border: none;
    color: #87CEEB;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.forgot-password-btn:hover {
    color: #5f9ea0;
    text-decoration: underline;
}

/* Main App Styles */
.main-app {
    min-height: 100vh;
    background: #000000;
}

.auth-form h3 {
    color: white;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.2rem;
}

.auth-form input {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 10px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.9);
}

.auth-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #87CEEB;
}

.auth-btn {
    width: 100%;
    padding: 10px;
    background: #87CEEB;
    color: #333;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.auth-btn:hover {
    background: #5f9ea0;
    transform: translateY(-1px);
}

.auth-form p {
    color: white;
    text-align: center;
    font-size: 0.8rem;
    margin: 0;
}

.auth-form a {
    color: #87CEEB;
    text-decoration: none;
    font-weight: 500;
}

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

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.user-info span {
    font-weight: 500;
}

.logout-btn {
    background: rgba(220, 38, 38, 0.8);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: rgba(220, 38, 38, 1);
}

/* Main content */
.main-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Cards */
.card {
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title i {
    color: #87CEEB;
}

/* Form styles */
.document-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: #4a5568;
    font-size: 0.9rem;
}

.form-help {
    font-size: 0.8rem;
    color: #718096;
    margin-top: 4px;
    display: block;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #87CEEB;
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Photo Upload Styles */
.photo-upload-section {
    border: 2px dashed #e2e8f0;
    border-radius: 20px;
    padding: 20px;
    background: #f8fafc;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.photo-upload-section:hover {
    border-color: #87CEEB;
    background: #f0f8ff;
}

.upload-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.upload-btn {
    background: #87CEEB;
    color: #333;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 120px;
    justify-content: center;
}

.upload-btn:hover {
    background: #5f9ea0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
}

.upload-btn i {
    font-size: 1rem;
}

.photo-preview {
    min-height: 100px;
    border-radius: 8px;
    background: white;
    border: 1px solid #e2e8f0;
    padding: 15px;
}

.no-photos {
    text-align: center;
    color: #718096;
    font-style: italic;
    margin: 0;
    font-size: 0.9rem;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.photo-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.photo-item:hover {
    border-color: #87CEEB;
    transform: scale(1.05);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-item .remove-photo {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.photo-item .remove-photo:hover {
    background: rgba(220, 38, 38, 0.9);
}

/* Google Photos Picker */
.google-photos-picker {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    min-width: 400px;
    max-width: 90vw;
    max-height: 80vh;
    overflow: hidden;
}

.picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.picker-header h3 {
    margin: 0;
    color: #2d3748;
    font-size: 1.2rem;
}

.close-picker {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #a0aec0;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-picker:hover {
    background: #e2e8f0;
    color: #2d3748;
}

.picker-content {
    padding: 30px;
    text-align: center;
}

.picker-content p {
    margin-bottom: 20px;
    color: #4a5568;
}

.auth-btn {
    background: #4285f4;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.auth-btn:hover {
    background: #3367d6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

/* Modal Photos */
.modal-photos {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.modal-photos h4 {
    margin-bottom: 15px;
    color: #2d3748;
    font-size: 1.1rem;
}

.modal-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
}

.modal-photo-item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.modal-photo-item:hover {
    border-color: #87CEEB;
    transform: scale(1.02);
}

.modal-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.submit-btn {
    background: #87CEEB;
    color: #333;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.3);
}

/* Documents section */
.documents-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    grid-column: 2;
}



.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: #87CEEB;
}

.filter-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.filter-select,
.sort-btn {
    padding: 10px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    font-size: 0.9rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus,
.sort-btn:focus {
    outline: none;
    border-color: #87CEEB;
}

.sort-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.sort-btn:hover {
    background: #f7fafc;
}

/* Documents grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.document-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.document-card .delete-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
    z-index: 10;
}

.document-card:hover .delete-btn {
    opacity: 1;
    transform: scale(1.1);
}

.document-card .delete-btn:hover {
    background: rgba(220, 38, 38, 1);
    transform: scale(1.1);
}

.document-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #87CEEB;
}

.document-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #87CEEB;
}

.document-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
    line-height: 1.4;
}

.document-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.document-author {
    color: #87CEEB;
    font-weight: 500;
}

.document-date {
    color: #718096;
}

.document-category {
    background: #e2e8f0;
    color: #4a5568;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.document-visibility {
    background: #87CEEB;
    color: #333;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.document-visibility.private {
    background: #f59e0b;
    color: white;


.approve-btn {
    background: #10b981;
    color: white;
}

.approve-btn:hover {
    background: #059669;
    transform: translateY(-1px);
}

.deny-btn {
    background: #ef4444;
    color: white;
}

.deny-btn:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

.pending-requests-section {
    margin-top: 30px;
}

.request-item {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.request-item:hover {
    border-color: #87CEEB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.request-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.request-user {
    font-weight: 600;
    color: #2d3748;
}

.request-document {
    color: #4a5568;
    font-size: 0.9rem;
}

.request-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.approve-btn {
    background: #48bb78;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.approve-btn:hover {
    background: #38a169;
}

.deny-btn {
    background: #e53e3e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.deny-btn:hover {
    background: #c53030;
}

/* Request Access Button */
.request-access-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.request-btn {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.request-btn:hover {
    background: #d97706;
    transform: translateY(-1px);
}

.request-btn:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    transform: none;
}

.document-preview {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Document Photos in Cards */
.document-photos {
    margin-top: 15px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.document-photo-thumb {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    border: 2px solid #e2e8f0;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.document-photo-thumb:hover {
    border-color: #87CEEB;
    transform: scale(1.05);
}

/* No documents state */
.no-documents {
    text-align: center;
    padding: 60px 20px;
    color: #718096;
}

.no-documents i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #cbd5e0;
}

.no-documents h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #4a5568;
}

.no-documents p {
    color: #888;
    font-size: 1rem;
    line-height: 1.5;
} 

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 25px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
}

.close {
    color: #a0aec0;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #2d3748;
}

.modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.document-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.document-content {
    line-height: 1.7;
    color: #4a5568;
    white-space: pre-wrap;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-radius: 25px 25px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.environment-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    font-family: 'Courier New', monospace;
}

.env-label {
    opacity: 0.8;
    font-weight: 500;
}

.env-value {
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.env-value.production {
    background: rgba(39, 221, 245, 0.2);
    border-color: rgba(39, 221, 245, 0.5);
    color: #27DDF5;
}

.env-value.staging {
    background: rgba(53, 245, 39, 0.2);
    border-color: rgba(53, 245, 39, 0.5);
    color: #35F527;
}

.env-value.loading {
    background: rgba(255, 255, 0, 0.2);
    border-color: rgba(255, 255, 0, 0.5);
    color: #FFFF00;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer {
        padding: 15px;
        margin-top: 30px;
    }
    
    .footer-content {
        gap: 8px;
    }
    
    .environment-indicator {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 30px 15px;
    }
    
    .footer {
        padding: 15px;
    }
    
    .filter-controls {
        justify-content: space-between;
    }
    
    /* Adjust borders for mobile */
    .documents-section,
    .admin-section,
    .header,
    .footer {
        margin-left: 20px;
        margin-right: 20px;
        padding-left: 20px;
        padding-right: 20px;
        width: calc(100% - 40px);
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .upload-options {
        flex-direction: column;
    }
    
    .upload-btn {
        flex: none;
    }
    
    .google-photos-picker {
        min-width: 90vw;
        margin: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .card,
    .documents-section {
        padding: 20px;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .filter-controls {
        flex-direction: column;
        gap: 10px;
    }
}

/* Large screen optimization */
@media (min-width: 1400px) {
    .documents-section,
    .admin-section,
    .header,
    .footer {
        margin-left: 250px;
        margin-right: 250px;
        padding-left: 40px;
        padding-right: 40px;
        width: calc(100% - 500px);
    }
}

/* Success message */
.success-message {
    background: #48bb78;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state */
.loading {
    text-align: center;
    padding: 40px;
    color: #718096;
}

.loading i {
    font-size: 2rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Interface Selection Styles */
.interface-selection {
    text-align: center;
    margin-bottom: 30px;
}

.interface-selection h3 {
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.interface-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.interface-btn {
    padding: 15px 25px;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    justify-content: center;
}

.admin-btn {
    background: #5E40FF;
    color: white;
}

.interface-btn.admin-btn {
    background: #5E40FF;
    color: white;
}

.admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(94, 64, 255, 0.3);
}

.interface-btn.admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(94, 64, 255, 0.3);
}

.user-btn {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
}

.user-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.3);
}

/* Admin Section Styles */
.admin-section {
    margin-bottom: 30px;
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

/* Ensure admin sections are properly positioned in grid */
#adminPostSection {
    grid-column: 1;
}

#userCreationSection,
#allUsersSection,
#adminUserManagement,
#adminAccountManagement {
    grid-column: 1;
}

/* Admin Controls Styling */
.admin-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.admin-controls .admin-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #5E40FF;
    color: white;
}

.admin-controls .admin-btn:hover {
    background: #4A32CC;
    transform: translateY(-1px);
}

.admin-controls .admin-btn.secondary {
    background: #718096;
}

.admin-controls .admin-btn.secondary:hover {
    background: #4A5568;
}

.admin-controls .admin-btn.danger-btn {
    background: #e53e3e;
}

.admin-controls .admin-btn.danger-btn:hover {
    background: #c53030;
}

/* Admin Info Styling */
.admin-info {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
}

.admin-info p {
    margin: 0 0 10px 0;
    color: #4a5568;
    line-height: 1.6;
}

.admin-info p:last-child {
    margin-bottom: 0;
}

.admin-info strong {
    color: #e53e3e;
}

/* Card Styling */
.card {
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title i {
    color: #87CEEB;
}

/* Dropdown Styles */
.dropdown-container {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    position: relative;
    padding-right: 40px !important;
}

.dropdown-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.dropdown-toggle.active .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 200px;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #4a5568;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 0;
    background: white;
    border: 1px solid #e2e8f0;
    cursor: pointer;
}

.dropdown-item:hover {
    background: #5E40FF;
    color: white;
    transform: translateX(5px);
    border-color: #5E40FF;
}

.dropdown-item:first-child {
    border-radius: 16px 16px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 16px 16px;
}

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

.user-form {
    background: #f7fafc;
    padding: 20px;
    border-radius: 20px;
    margin-top: 20px;
}

.user-form h3 {
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.users-list {
    margin-top: 20px;
}

.users-list h3 {
    color: #2d3748;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.users-container {
    display: grid;
    gap: 10px;
}

.user-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.user-email {
    font-weight: 600;
    color: #2d3748;
}

.user-type {
    font-size: 0.8rem;
    color: #718096;
}

.user-actions {
    display: flex;
    gap: 10px;
}

.delete-user-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 5px;
    background: #e53e3e;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.delete-user-btn:hover {
    background: #c53030;
}

/* Admin Account Management Styles */
.danger-btn {
    background: #00e1ff !important;
    color: white;
}

.danger-btn:hover {
    background: #c53030 !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

.admin-info {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.admin-info p {
    margin: 5px 0;
    color: #2d3748;
    font-size: 0.9rem;
}

.admin-info p:first-child {
    color: #c53030;
    font-weight: 600;
} 

/* Admin sections - hidden by default */
.admin-section {
    display: none;
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

/* When admin post section is hidden, make documents section larger */
.post-section[style*="display: none"] ~ .documents-section {
    margin-top: 0;
    padding: 40px;
}

/* Documents Section - Gmail Style Layout */
.documents-section {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    margin-top: 0;
}

.documents-section .section-header {
    margin-bottom: 30px;
}

.documents-section .section-header h2 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.documents-section .section-header p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
} 

/* User Role Info */
.user-role-info {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border: 1px solid #e2e8f0;
}

.role-message {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #4a5568;
}

.role-message i {
    font-size: 1.1rem;
    color: #87CEEB;
}

.role-message.admin-role i {
    color: #27DDF5;
}

.role-message.user-role i {
    color: #35F527;
}

.role-message span {
    font-weight: 500;
}

/* Hide role messages by default */
.role-message {
    display: none;
}

.role-message.active {
    display: flex;
} 

 

/* Tutorial System */
.tutorial-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tutorial-container {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.tutorial-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tutorial-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.tutorial-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.tutorial-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.tutorial-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

.tutorial-step {
    text-align: center;
}

.tutorial-step h3 {
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.tutorial-step p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.tutorial-step .tutorial-image {
    margin: 20px 0;
    padding: 20px;
    background: #f7fafc;
    border-radius: 8px;
    border: 2px dashed #e2e8f0;
}

.tutorial-step .tutorial-image i {
    font-size: 3rem;
    color: #87CEEB;
    margin-bottom: 10px;
}

.tutorial-step .tutorial-tip {
    background: #ebf8ff;
    border: 1px solid #bee3f8;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: left;
}

.tutorial-step .tutorial-tip h4 {
    color: #2b6cb0;
    margin: 0 0 10px 0;
    font-size: 1rem;
}

.tutorial-step .tutorial-tip p {
    margin: 0;
    color: #2c5282;
    font-size: 0.9rem;
}

.tutorial-navigation {
    background: #f7fafc;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e2e8f0;
}

.tutorial-nav-btn {
    background: #87CEEB;
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tutorial-nav-btn:hover {
    background: #27DDF5;
    transform: translateY(-1px);
}

.tutorial-nav-btn:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    transform: none;
}

.tutorial-progress {
    text-align: center;
    flex: 1;
    margin: 0 20px;
}

.tutorial-progress span {
    display: block;
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.tutorial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.tutorial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
    transition: all 0.2s ease;
}

.tutorial-dot.active {
    background: #87CEEB;
    transform: scale(1.2);
}

.tutorial-footer {
    background: #f7fafc;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e2e8f0;
}

.tutorial-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    font-size: 0.9rem;
    cursor: pointer;
}

.tutorial-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #87CEEB;
}

.tutorial-skip {
    background: none;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.tutorial-skip:hover {
    background: #e2e8f0;
    color: #2d3748;
}

/* Tutorial Trigger Button */
.tutorial-trigger {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.tutorial-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.tutorial-trigger:active {
    transform: scale(0.95);
}

/* Responsive Tutorial */
@media (max-width: 768px) {
    .tutorial-container {
        max-width: 95%;
        max-height: 90vh;
    }
    
    .tutorial-header {
        padding: 15px;
    }
    
    .tutorial-header h2 {
        font-size: 1.3rem;
    }
    
    .tutorial-content {
        padding: 20px;
    }
    
    .tutorial-navigation {
        padding: 15px;
        flex-direction: column;
        gap: 15px;
    }
    
    .tutorial-nav-btn {
        width: 100%;
        justify-content: center;
    }
    
    .tutorial-footer {
        padding: 15px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .tutorial-trigger {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 15px;
        left: 15px;
    }
} 

/* User Section Black with Blue Outline */
.user-section-black {
    background: #1a1a1a;
    border: 2px solid #87CEEB;
    border-radius: 20px;
    margin: 20px 0;
    padding: 30px;
    color: white;
}

/* Ensure user creation section is visible when shown */
#userCreationSection[style*="display: block"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.user-section-black .section-header h2 {
    color: #87CEEB;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.user-section-black .section-header p {
    color: #cccccc;
    margin-bottom: 25px;
    font-size: 1rem;
}

/* User Creation Form */
.user-form {
    max-width: 600px;
    margin: 0 auto;
}

.user-form .form-group {
    margin-bottom: 20px;
}

.user-form label {
    display: block;
    color: #87CEEB;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 1rem;
}

.user-form input,
.user-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #333;
    border-radius: 20px;
    background: #2a2a2a;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.user-form input:focus,
.user-form select:focus {
    outline: none;
    border-color: #87CEEB;
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.1);
}

.user-form input::placeholder {
    color: #888;
}

.user-form .form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.user-form .admin-btn {
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-form .admin-btn.secondary {
    background: #444;
    color: white;
    border: 2px solid #666;
}

.user-form .admin-btn.secondary:hover {
    background: #555;
    border-color: #87CEEB;
}

/* Users Container */
.users-container {
    max-width: 1000px;
    margin: 0 auto;
}

.users-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
}

.filter-group label {
    color: #87CEEB;
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-group select,
.filter-group input {
    padding: 10px 12px;
    border: 2px solid #333;
    border-radius: 6px;
    background: #2a2a2a;
    color: white;
    font-size: 0.9rem;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: #87CEEB;
}

/* Users List */
.users-list {
    background: #2a2a2a;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #444;
}

.user-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: #333;
    border-radius: 6px;
    border: 1px solid #555;
    transition: all 0.3s ease;
}

.user-item:hover {
    background: #3a3a3a;
    border-color: #87CEEB;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #87CEEB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-weight: bold;
    font-size: 1.1rem;
}

.user-details h4 {
    color: white;
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.user-details p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

.user-role {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.user-role.admin {
    background: #ff6b6b;
    color: white;
}

.user-role.user {
    background: #4ecdc4;
    color: white;
}

.user-actions {
    display: flex;
    gap: 10px;
}

.user-actions button {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.user-actions .edit-btn {
    background: #87CEEB;
    color: #1a1a1a;
}

.user-actions .edit-btn:hover {
    background: #27DDF5;
}

.user-actions .delete-btn {
    background: #ff6b6b;
    color: white;
}

.user-actions .delete-btn:hover {
    background: #ff5252;
}

/* Responsive Design */
@media (max-width: 768px) {
    .user-section-black {
        padding: 20px;
        margin: 15px 0;
    }
    
    .users-filters {
        flex-direction: column;
        gap: 15px;
    }
    
    .filter-group {
        min-width: auto;
    }
    
    .user-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .user-actions {
        justify-content: center;
    }
    
    .user-form .form-actions {
        flex-direction: column;
        align-items: center;
    }
} 

/* Document Cards - Gmail Style */
.document-card {
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 80px;
    justify-content: center;
}

.document-card:hover {
    border-color: #87CEEB;
    box-shadow: 0 2px 8px rgba(135, 206, 235, 0.15);
    transform: translateY(-1px);
}

.document-card:active {
    transform: translateY(0);
}

.document-card .document-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.document-card .document-author {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.document-card .author-icon {
    color: #87CEEB;
    font-size: 0.8rem;
}

.document-card .document-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.document-card .meta-item {
    font-size: 0.75rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}

.document-card .meta-item i {
    font-size: 0.7rem;
}

.document-card .category-badge {
    background: #f0f8ff;
    color: #0066cc;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: capitalize;
}



/* Document Grid - Optimized for Gmail Style */
.documents-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .documents-grid {
        gap: 16px;
    }
    
    .document-card {
        padding: 20px 24px;
        min-height: 90px;
    }
    
    .document-card .document-title {
        font-size: 1.2rem;
    }
    
    .document-card .document-author {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    .documents-grid {
        gap: 20px;
    }
    
    .document-card {
        padding: 24px 28px;
        min-height: 100px;
    }
    
    .document-card .document-title {
        font-size: 1.3rem;
    }
} 

/* Document Card Delete Button */
.document-card {
    position: relative;
}

.document-card .delete-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s ease;
    opacity: 0;
}

.document-card:hover .delete-btn {
    opacity: 1;
}

.document-card .delete-btn:hover {
    background: #ff5252;
    transform: scale(1.1);
}

/* Document Card Content Spacing */
.document-card .document-title {
    padding-right: 40px; /* Make room for delete button */
}

/* No Documents Message - Updated for Gmail Style */
.no-documents {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-documents i {
    font-size: 3rem;
    color: #87CEEB;
    margin-bottom: 20px;
}

.no-documents h3 {
    color: #1a1a1a;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.no-documents p {
    color: #888;
    font-size: 1rem;
    line-height: 1.5;
} 