* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f9fafb;
    color: #111827;
}

.app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    width: 256px;
    background-color: white;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    background: linear-gradient(to bottom, #aebeff, #e1ffdd);
    color: #2563eb; /* #1e40af */
    padding: 1.5rem;
}

.sidebar-header h1 {
    font-size: 1.25rem;
    font-weight: 600;
}

.sidebar-header p {
    font-size: 0.875rem;
    margin-top: 0.25rem;
    opacity: 0.9;
}

.sidebar-nav {
    flex: 1;
    padding: 1rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 0.5rem;
}

.nav-item:hover {
    background-color: #f3f4f6;
}

.nav-item.active {
    background-color: #2563eb;
    color: white;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
}

.sidebar-footer {
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
}

.version {
    text-align: center;
    font-size: 0.75rem;
    color: #6b7280;
}

/* Main Content */
.main-content {
    flex: 1;
    overflow: auto;
}

.content-wrapper {
    padding: 2rem;
}

.content-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.content-header {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem;
}

.content-header h2 {
    font-size: 1.5rem;
    color: #1f2937;
}

.content-body {
    padding: 1.5rem;
}

/* Forms */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    color: #374151;
}

.form-control {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

/* Input with Add New button */
.input-with-add {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.input-with-add .form-control {
    flex: 1;
}

.btn-add-new {
    padding: 0.5rem;
    background-color: #10b981;
    color: white;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
}

.btn-add-new:hover {
    background-color: #059669;
    transform: scale(1.05);
}

.btn-add-new svg {
    display: block;
}

/* Form Mode Toggle */
.form-mode-toggle {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background-color: #f3f4f6;
    padding: 0.25rem;
    border-radius: 0.5rem;
    width: fit-content;
}

.mode-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    background-color: transparent;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.mode-btn.active {
    background-color: white;
    color: #2563eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mode-btn:hover:not(.active) {
    color: #374151;
}

/* Bulk Entry */
.bulk-entry-field textarea {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

.form-text {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.form-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    background-color: #e5e7eb;
    color: #374151;
}

.btn-secondary:hover {
    background-color: #d1d5db;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

.btn-icon {
    padding: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    background-color: #f3f4f6;
}

.btn-icon.btn-edit {
    color: #2563eb;
}

.btn-icon.btn-delete {
    color: #dc2626;
}

/* Dashboard */
.dashboard {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.stat-card {
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid;
}

.stat-card.stat-blue {
    background-color: #eff6ff;
    border-color: #bfdbfe;
}

.stat-card.stat-green {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
}

.stat-card.stat-purple {
    background-color: #faf5ff;
    border-color: #e9d5ff;
}

.stat-card.stat-orange {
    background-color: #fff7ed;
    border-color: #fed7aa;
}

.stat-card.stat-pink {
    background-color: #fdf2f8;
    border-color: #fbcfe8;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 600;
}

.stat-card.stat-blue .stat-value {
    color: #2563eb;
}

.stat-card.stat-green .stat-value {
    color: #16a34a;
}

.stat-card.stat-purple .stat-value {
    color: #9333ea;
}

.stat-card.stat-orange .stat-value {
    color: #ea580c;
}

.stat-card.stat-pink .stat-value {
    color: #db2777;
}

.stat-label {
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Data Section */
.data-section {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.section-header h3 {
    font-size: 1.125rem;
    color: #111827;
}

/* Search Box */
.search-box {
    position: relative;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-input-wrapper {
    position: relative;
    width: 320px;
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    width: 20px;
    height: 20px;
}

.search-input {
    width: 100%;
    padding: 0.5rem 0.75rem 0.5rem 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.search-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Table */
.table-responsive {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table thead {
    background-color: #f9fafb;
}

.data-table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #374151;
}

.data-table tbody tr {
    border-top: 1px solid #e5e7eb;
}

.data-table tbody tr:hover {
    background-color: #f9fafb;
}

.data-table td {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-success {
    background-color: #dcfce7;
    color: #166534;
}

.badge-danger {
    background-color: #fee2e2;
    color: #991b1b;
}

.badge-warning {
    background-color: #fef3c7;
    color: #92400e;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

/* Grid Section */
.grid-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.grid-header h3 {
    font-size: 1.125rem;
}

.inventory-count {
    color: #6b7280;
    font-size: 0.875rem;
}

.no-results {
    text-align: center;
    padding: 2rem;
    color: #6b7280;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

/* Asset Request Specific Styles */
.form-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.form-section-title:first-child {
    margin-top: 0;
}

.required {
    color: #dc2626;
}

.request-stats {
    display: flex;
    gap: 2rem;
    padding: 1rem 1.5rem;
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-size: 0.875rem;
}

.stat-count {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.125rem;
}

.text-muted {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Priority Badges */
.badge-priority-low {
    background-color: #dbeafe;
    color: #1e40af;
}

.badge-priority-medium {
    background-color: #fef3c7;
    color: #92400e;
}

.badge-priority-high {
    background-color: #fed7aa;
    color: #c2410c;
}

.badge-priority-critical {
    background-color: #fee2e2;
    color: #991b1b;
}

/* Status Badges */
.badge-status-pending {
    background-color: #fef3c7;
    color: #92400e;
}

.badge-status-approved {
    background-color: #dcfce7;
    color: #166534;
}

.badge-status-rejected {
    background-color: #fee2e2;
    color: #991b1b;
}

.badge-status-assigned {
    background-color: #dbeafe;
    color: #1e40af;
}

/* Action Icons */
.btn-icon.btn-view {
    color: #3b82f6;
}

.btn-icon.btn-approve {
    color: #16a34a;
}

.btn-icon.btn-reject {
    color: #dc2626;
}

.btn-icon.btn-assign {
    color: #9333ea;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    border-radius: 0.5rem;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.modal-content.modal-sm {
    max-width: 500px;
}

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

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
}

.modal-close:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.modal-body {
    padding: 1.5rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.detail-section {
    background-color: #f9fafb;
    padding: 1rem;
    border-radius: 0.375rem;
}

.detail-section.full-width {
    grid-column: 1 / -1;
}

.detail-section h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.detail-section p {
    margin: 0.5rem 0;
    color: #374151;
    font-size: 0.875rem;
}

.detail-section p strong {
    color: #1f2937;
    margin-right: 0.5rem;
}

/* Request Summary Stats */
.request-summary {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background-color: #f9fafb;
    justify-content: space-around;
    border-bottom: 1px solid #e5e7eb;
}

.summary-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.summary-count {
    font-size: 2rem;
    font-weight: 700;
}

.summary-count.pending {
    color: #d97706;
}

.summary-count.approved {
    color: #16a34a;
}

.summary-count.assigned {
    color: #2563eb;
}

.summary-count.rejected {
    color: #dc2626;
}

.summary-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.login-container {
    width: 100%;
    max-width: 450px;
}

.login-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    padding: 2.5rem;
}

.login-card.register-card {
    max-width: 600px;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: #6b7280;
    font-size: 0.875rem;
}

.login-form {
    margin-bottom: 1.5rem;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.btn-block {
    width: 100%;
}

.login-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.login-footer p {
    color: #6b7280;
    font-size: 0.875rem;
}

.login-footer a {
    color: #2563eb;
    text-decoration: none;
}

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

.demo-credentials {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.demo-credentials h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.credentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.credentials-grid div {
    font-size: 0.8125rem;
    color: #374151;
    line-height: 1.6;
}

.credentials-grid strong {
    color: #1f2937;
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

/* User Profile in Sidebar */
.user-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    margin: 1rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
}

.user-info {
    flex: 1;
}

.user-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
}

.user-role {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Logout Button */
.logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    color: #dc2626;
    text-decoration: none;
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
    transition: background-color 0.2s;
    font-size: 0.875rem;
}

.logout-btn:hover {
    background-color: #fee2e2;
}

.logout-btn-top-right {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: white;
    background-color: #dc2626;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(220, 38, 38, 0.3);
    z-index: 1000;
}

.logout-btn-top-right:hover {
    background-color: #b91c1c;
    box-shadow: 0 6px 8px rgba(220, 38, 38, 0.4);
}

/* Role Badges */
.badge-role-admin {
    background-color: #fef3c7;
    color: #92400e;
}

.badge-role-user {
    background-color: #dbeafe;
    color: #1e40af;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
}

.breadcrumb-item a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: #1d4ed8;
}

.breadcrumb-item.active {
    color: #1f2937;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    margin: 0 0.5rem;
    color: #d1d5db;
}

/* Navigation Groups */
.nav-group {
    margin-bottom: 1rem;
}

.nav-group-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
}

.nav-sub-item {
    padding-left: 2.5rem;
    font-size: 0.875rem;
}

.nav-sub-item svg {
    width: 18px;
    height: 18px;
}

/* Profile Page */
.profile-container {
    max-width: 900px;
}

.profile-sections {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-section {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.profile-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input:disabled,
.form-group input[readonly] {
    background-color: #f9fafb;
    color: #6b7280;
    cursor: not-allowed;
}

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

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: 0.05em;
}

.info-item span {
    color: #1f2937;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Detail Pages */
.detail-container {
    max-width: 1200px;
}

.detail-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

@media print {
    .detail-actions,
    .sidebar,
    .breadcrumb-nav {
        display: none;
    }

    .main-content {
        margin: 0;
        padding: 0;
    }
}

/* Searchable Input with Datalist */
input[list] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

input[list]::-webkit-calendar-picker-indicator {
    opacity: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Request Mode Toggle */
.request-mode-toggle {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f3f4f6;
    border-radius: 0.5rem;
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.toggle-container input[type="checkbox"] {
    position: relative;
    width: 48px;
    height: 24px;
    appearance: none;
    background-color: #d1d5db;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.toggle-container input[type="checkbox"]:checked {
    background-color: #2563eb;
}

.toggle-container input[type="checkbox"]::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    top: 2px;
    left: 2px;
    transition: transform 0.2s;
}

.toggle-container input[type="checkbox"]:checked::before {
    transform: translateX(24px);
}

.toggle-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

/* Required Field Indicator */
.required {
    color: #dc2626;
    font-weight: 600;
}

/* Badge Variants */
.badge-info {
    background-color: #dbeafe;
    color: #1e40af;
}

.badge-secondary {
    background-color: #e5e7eb;
    color: #4b5563;
}

/* View Button */
.btn-view {
    color: #2563eb;
}

.btn-view:hover {
    background-color: #dbeafe;
}

/* File Input Styling */
input[type="file"].form-control {
    padding: 0.5rem;
    border: 2px dashed #d1d5db;
    background-color: #f9fafb;
    cursor: pointer;
    transition: all 0.2s;
}

input[type="file"].form-control:hover {
    border-color: #2563eb;
    background-color: #eff6ff;
}

input[type="file"].form-control:focus {
    border-color: #2563eb;
    background-color: #eff6ff;
    outline: none;
}
