/* Admin Panel Styles */
.admin-body {
    background: linear-gradient(135deg, #00072D 0%, #001C55 100%);
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Login Page Styles */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

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

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

.login-logo {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}

.login-header h1 {
    color: #A6E1FA;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.login-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0;
}

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

.login-form label {
    display: block;
    color: #A6E1FA;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.login-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(166, 225, 250, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.login-form input:focus {
    outline: none;
    border-color: #0E6BA8;
    background: rgba(255, 255, 255, 0.15);
}

.login-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0E6BA8 0%, #0A2472 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.login-btn:hover {
    background: linear-gradient(135deg, #0A2472 0%, #001C55 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.error-message {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff6b6b;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}

.login-footer {
    text-align: center;
    margin-top: 30px;
}

.back-link {
    color: #A6E1FA;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #0E6BA8;
}

/* Admin Dashboard Styles */
.admin-container {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 280px;
    background: rgba(0, 7, 45, 0.95);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(166, 225, 250, 0.2);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-header {
    padding: 30px 20px;
    border-bottom: 1px solid rgba(166, 225, 250, 0.2);
    text-align: center;
}

.sidebar-logo {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
}

.sidebar-header h2 {
    color: #A6E1FA;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(166, 225, 250, 0.1);
    color: #A6E1FA;
    border-left-color: #0E6BA8;
}

.nav-icon {
    margin-right: 12px;
    font-size: 18px;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(166, 225, 250, 0.2);
}

.logout-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: rgba(255, 0, 0, 0.1);
    color: #ff6b6b;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.logout-btn:hover {
    background: rgba(255, 0, 0, 0.2);
    color: #ff5252;
}

.admin-main {
    flex: 1;
    margin-left: 280px;
    background: linear-gradient(135deg, #001C55 0%, #0A2472 100%);
    min-height: 100vh;
}

.admin-header {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    border-bottom: 1px solid rgba(166, 225, 250, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left h1 {
    color: #A6E1FA;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.header-left p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 16px;
}

.admin-user {
    color: #A6E1FA;
    font-weight: 600;
    font-size: 16px;
}

.admin-content {
    padding: 30px;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(166, 225, 250, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 10px 0;
}

.stat-number {
    color: #A6E1FA;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

/* Quick Actions */
.quick-actions {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(166, 225, 250, 0.2);
    border-radius: 15px;
    padding: 25px;
}

.quick-actions h3 {
    color: #A6E1FA;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.action-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #0E6BA8 0%, #0A2472 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.action-btn:hover {
    background: linear-gradient(135deg, #0A2472 0%, #001C55 100%);
    transform: translateY(-2px);
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    color: #A6E1FA;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.add-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #0E6BA8 0%, #0A2472 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.add-btn:hover {
    background: linear-gradient(135deg, #0A2472 0%, #001C55 100%);
    transform: translateY(-2px);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.content-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(166, 225, 250, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
}

.content-card h3 {
    color: #A6E1FA;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.content-card p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 20px 0;
    font-size: 14px;
}

.edit-btn {
    padding: 8px 16px;
    background: rgba(166, 225, 250, 0.2);
    color: #A6E1FA;
    border: 1px solid rgba(166, 225, 250, 0.3);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.edit-btn:hover {
    background: rgba(166, 225, 250, 0.3);
    border-color: #A6E1FA;
}

/* Services List */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(166, 225, 250, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateX(5px);
}

.service-info h3 {
    color: #A6E1FA;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.service-info p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
}

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

.delete-btn {
    padding: 8px 16px;
    background: rgba(255, 0, 0, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delete-btn:hover {
    background: rgba(255, 0, 0, 0.3);
    border-color: #ff5252;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(166, 225, 250, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.portfolio-info {
    padding: 20px;
}

.portfolio-info h3 {
    color: #A6E1FA;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.portfolio-info p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 15px 0;
    font-size: 14px;
}

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

/* Settings Grid */
.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.settings-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(166, 225, 250, 0.2);
    border-radius: 15px;
    padding: 25px;
}

.settings-card h3 {
    color: #A6E1FA;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

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

.settings-form label {
    display: block;
    color: #A6E1FA;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.settings-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(166, 225, 250, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.settings-form input:focus {
    outline: none;
    border-color: #0E6BA8;
    background: rgba(255, 255, 255, 0.15);
}

.settings-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.save-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #0E6BA8 0%, #0A2472 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.save-btn:hover {
    background: linear-gradient(135deg, #0A2472 0%, #001C55 100%);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .admin-sidebar {
        width: 100%;
        position: relative;
        height: auto;
    }
    
    .admin-main {
        margin-left: 0;
    }
    
    .admin-container {
        flex-direction: column;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
    
    .content-grid,
    .portfolio-grid,
    .settings-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .service-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal-container {
    background: rgba(0, 7, 45, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(166, 225, 250, 0.3);
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(166, 225, 250, 0.2);
}

.modal-header h3 {
    color: #A6E1FA;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 0, 0, 0.2);
    color: #ff6b6b;
}

.modal-body {
    padding: 25px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.modal-form label {
    color: #A6E1FA;
    font-weight: 600;
    font-size: 14px;
}

.modal-form input,
.modal-form textarea,
.modal-form select {
    padding: 12px 16px;
    border: 2px solid rgba(166, 225, 250, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.modal-form input:focus,
.modal-form textarea:focus,
.modal-form select:focus {
    outline: none;
    border-color: #0E6BA8;
    background: rgba(255, 255, 255, 0.15);
}

.modal-form textarea {
    resize: vertical;
    min-height: 100px;
}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(166, 225, 250, 0.2);
}

.modal-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.modal-btn-primary {
    background: linear-gradient(135deg, #0E6BA8 0%, #0A2472 100%);
    color: white;
}

.modal-btn-primary:hover {
    background: linear-gradient(135deg, #0A2472 0%, #001C55 100%);
    transform: translateY(-2px);
}

.modal-btn-secondary {
    background: rgba(166, 225, 250, 0.2);
    color: #A6E1FA;
    border: 1px solid rgba(166, 225, 250, 0.3);
}

.modal-btn-secondary:hover {
    background: rgba(166, 225, 250, 0.3);
    border-color: #A6E1FA;
}

.modal-btn-danger {
    background: rgba(255, 0, 0, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.modal-btn-danger:hover {
    background: rgba(255, 0, 0, 0.3);
    border-color: #ff5252;
}

/* Animation keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* File upload styling */
.file-upload {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}

.file-upload input[type=file] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px dashed rgba(166, 225, 250, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-align: center;
    min-height: 80px;
}

.file-upload:hover .file-upload-label {
    border-color: #A6E1FA;
    background: rgba(166, 225, 250, 0.1);
    color: #A6E1FA;
}

.file-upload-icon {
    margin-right: 10px;
    font-size: 20px;
}

/* File preview */
.file-preview {
    margin-top: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: none;
}

.file-preview img {
    max-width: 100%;
    max-height: 150px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.file-preview .file-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

/* Upload progress */
.upload-progress {
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    display: none;
}

.upload-progress-bar {
    height: 4px;
    background: linear-gradient(135deg, #0E6BA8 0%, #0A2472 100%);
    width: 0%;
    transition: width 0.3s ease;
}

/* Content preview */
.content-preview {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(166, 225, 250, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
}

.content-preview h4 {
    color: #A6E1FA;
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 600;
}

.content-preview p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
}

/* Messages Modal Styles */
.messages-container {
    max-height: 400px;
    overflow-y: auto;
}

.message-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(166, 225, 250, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

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

.message-header h4 {
    color: #A6E1FA;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.message-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.message-email {
    color: #0E6BA8;
    font-size: 14px;
    margin: 0 0 10px 0;
    font-weight: 500;
}

.message-content {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

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

.message-actions .modal-btn {
    padding: 8px 16px;
    font-size: 12px;
}

/* File management styling */
.file-management-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.file-list {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid rgba(166, 225, 250, 0.1);
}

.file-preview {
    flex-shrink: 0;
}

.file-info {
    flex: 1;
}

.file-name {
    color: #A6E1FA;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.file-size {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.file-actions {
    display: flex;
    gap: 8px;
}

.file-actions .edit-btn,
.file-actions .delete-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-actions .edit-btn {
    background: rgba(166, 225, 250, 0.2);
    color: #A6E1FA;
    border: 1px solid rgba(166, 225, 250, 0.3);
}

.file-actions .edit-btn:hover {
    background: rgba(166, 225, 250, 0.3);
    border-color: #A6E1FA;
}

.file-actions .delete-btn {
    background: rgba(255, 0, 0, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.file-actions .delete-btn:hover {
    background: rgba(255, 0, 0, 0.3);
    border-color: #ff5252;
}

/* File management form */
.file-management .form-group {
    margin-bottom: 20px;
}

.file-management label {
    display: block;
    color: #A6E1FA;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.file-management input,
.file-management select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(166, 225, 250, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.file-management input:focus,
.file-management select:focus {
    outline: none;
    border-color: #0E6BA8;
    background: rgba(255, 255, 255, 0.15);
}

.file-management input::placeholder {
    color: rgba(255, 255, 255, 0.5);
} 