/* Farm Reports - Custom Styles */

/* ===== Farm Landing Page ===== */
.farm-hero {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 40%, #43a047 100%);
    color: #fff;
    padding: 6rem 0 4rem;
    text-align: center;
}

.farm-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.farm-hero__sub {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.15rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* How It Works */
.farm-how {
    padding: 4rem 0;
    background: var(--white);
}

.farm-how h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--dark-blue);
}

.farm-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.farm-step {
    text-align: center;
    padding: 1.5rem;
}

.farm-step__num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #43a047, #2e7d32);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.farm-step h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.farm-step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* What You Get */
.farm-features {
    padding: 4rem 0;
    background: var(--background);
}

.farm-features h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.farm-features__summary {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.farm-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.farm-feature {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.farm-feature__icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.farm-feature h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.farm-feature p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Report Tiers */
.farm-tiers {
    padding: 4rem 0;
    background: var(--white);
}

.farm-tiers h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--dark-blue);
}

.farm-tiers__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.farm-tier {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    position: relative;
    text-align: center;
}

.farm-tier h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.farm-tier p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.farm-tier__tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    background: #e8f5e9;
    color: #2e7d32;
}

.farm-tier--featured {
    border-color: #43a047;
    box-shadow: 0 4px 16px rgba(67, 160, 71, 0.15);
}

.farm-tier--featured .farm-tier__tag {
    background: #43a047;
    color: #fff;
}

/* Auth Section */
.farm-auth {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 50%, #f5f5f5 100%);
}

.farm-auth__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.farm-auth__box {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    border-top: 4px solid #43a047;
}

.farm-auth__box h3 {
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.farm-auth__box > p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.farm-auth__perks {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.farm-auth__perks li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

.farm-auth__perks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #43a047;
    font-weight: bold;
}

/* Keep legacy login-section for register page */
.login-section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 50%, #f5f5f5 100%);
    min-height: calc(100vh - 80px);
}

/* ===== Nav User (always visible, outside hamburger) ===== */
.nav-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1rem;
    flex-shrink: 0;
}

.nav-user__profile {
    display: inline-block;
    background: linear-gradient(135deg, #43a047, #2e7d32);
    color: #fff !important;
    padding: 0.45rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.nav-user__profile:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.nav-user__logout {
    color: var(--text-light, #666);
    font-size: 0.8rem;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav-user__logout:hover {
    color: var(--text-dark, #333);
}

/* ===== Landing page responsive ===== */
@media (max-width: 768px) {
    .farm-hero {
        padding: 4rem 0 3rem;
    }

    .farm-hero h1 {
        font-size: 1.75rem;
    }

    .farm-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }

    .farm-features__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .farm-tiers__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .farm-auth__grid {
        grid-template-columns: 1fr;
    }
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.login-box {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    border-top: 4px solid #43a047;
}

.login-box h2 {
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.login-footer {
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

/* ===== Forms ===== */
.form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #43a047;
    box-shadow: 0 0 0 3px rgba(67, 160, 71, 0.15);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: linear-gradient(135deg, #43a047, #2e7d32);
    color: var(--white);
}

.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #388e3c, #1b5e20);
}

.btn-secondary {
    background: var(--background);
    color: var(--text-dark);
    border: 1px solid var(--border);
}

.btn-secondary:hover:not(:disabled) {
    background: var(--border);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
}

/* ===== Report Layout ===== */
.report-section {
    padding: 2rem 0 3rem;
}

.report-section h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.report-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 1.5rem;
    min-height: 600px;
}

.form-panel {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    overflow-y: auto;
    max-height: 75vh;
}

.form-panel h3 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    color: var(--dark-blue);
}

.form-panel h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.form-panel hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 1.25rem 0;
}

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

.form-actions .btn {
    flex: 1;
}

/* ===== Points List ===== */
.points-list {
    min-height: 60px;
}

.empty-state {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
    padding: 1rem 0;
}

.point-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.8rem;
    background: var(--background);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.point-info {
    flex: 1;
    min-width: 0;
}

.point-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.point-meta {
    font-size: 0.8rem;
    color: var(--text-light);
}

.point-actions {
    display: flex;
    gap: 0.4rem;
    flex-shrink: 0;
}

/* ===== Map ===== */
.map-panel {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

#map {
    height: 65vh;
    min-height: 500px;
    width: 100%;
}

.map-instructions {
    background: var(--white);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

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

.modal-content {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    max-width: 420px;
    width: 90%;
    box-shadow: var(--shadow-xl);
}

.modal-content h3 {
    margin-bottom: 1.25rem;
    color: var(--dark-blue);
}

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

.modal-actions .btn {
    flex: 1;
}

.coords-display {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== Progress Bar ===== */
.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-bar.large {
    height: 14px;
    border-radius: 7px;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-ocean);
    border-radius: inherit;
    transition: width 0.5s ease;
}

.progress-percent {
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-blue);
}

.progress-note {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
}

/* ===== Status Page ===== */
.status-section {
    padding: 6rem 0 3rem;
    display: flex;
    justify-content: center;
}

.status-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.status-card h1 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.field-name {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.status-info {
    text-align: left;
    background: var(--background);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.status-info p {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.current-step {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.success-message {
    background: #e8f5e9;
    border: 1px solid var(--success);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.success-message h3 {
    color: var(--success);
    margin-bottom: 0.5rem;
}

.error-message {
    background: #fbe9e7;
    border: 1px solid var(--danger);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1rem 0;
    color: var(--danger);
    font-size: 0.95rem;
}

.status-actions {
    margin-top: 1.5rem;
}

/* ===== Nav User ===== */
.nav-user {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

/* ===== Small Buttons ===== */
.btn-small {
    padding: 0.35rem 0.7rem;
    font-size: 0.8rem;
    border-radius: 6px;
}

.btn-warning {
    background: #ff9800;
    color: white;
}

.btn-success {
    background: var(--success);
    color: white;
}

/* ===== Profile Section ===== */
.profile-section {
    padding: 6rem 0 3rem;
}

.profile-section h1 {
    margin-bottom: 2rem;
    color: var(--dark-blue);
}

.profile-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
}

.profile-card h2 {
    font-size: 1.25rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.profile-info p {
    margin-bottom: 0.5rem;
}

.profile-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

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

.profile-table th,
.profile-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.profile-table th {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.empty-message {
    color: var(--text-light);
    font-style: italic;
}

/* ===== Status Badges ===== */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
}

.status-badge.status-paid,
.status-badge.status-completed {
    background: #e8f5e9;
    color: var(--success);
}

.status-badge.status-pending,
.status-badge.status-processing,
.status-badge.status-queued {
    background: #fff3e0;
    color: #f57c00;
}

.status-badge.status-failed {
    background: #fbe9e7;
    color: var(--danger);
}

.promo-badge {
    background: #e3f2fd;
    color: var(--primary-blue);
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.error-text {
    color: var(--danger);
}

/* ===== Admin Section ===== */
.admin-section {
    padding: 6rem 0 3rem;
}

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

.admin-header h1 {
    color: var(--dark-blue);
}

.admin-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
}

.admin-card h2 {
    font-size: 1.25rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.promo-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.admin-table th,
.admin-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.85rem;
}

.admin-table .inactive-row {
    opacity: 0.6;
}

.promo-code {
    background: var(--background);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    font-weight: 600;
}

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

.badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-success {
    background: #e8f5e9;
    color: var(--success);
}

.badge-danger {
    background: #fbe9e7;
    color: var(--danger);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-box {
    background: var(--background);
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== Product Selector ===== */
.product-selector {
    margin-bottom: 1.5rem;
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-option {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.product-option:hover {
    border-color: var(--primary-blue);
    background: #f8fafc;
}

.product-option.selected {
    border-color: var(--primary-blue);
    background: #e3f2fd;
}

.product-option input[type="radio"] {
    margin-right: 0.75rem;
}

.product-info {
    flex: 1;
}

.product-name {
    font-weight: 600;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.product-price {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.product-body {
    width: 100%;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.product-body .saved-fields-section {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

/* ===== Promo Code Input ===== */
.promo-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.promo-input-group input {
    flex: 1;
}

.promo-input-group .btn {
    white-space: nowrap;
}

.promo-result {
    font-size: 0.9rem;
    padding: 0.5rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.promo-result.success {
    background: #e8f5e9;
    color: var(--success);
}

.promo-result.error {
    background: #fbe9e7;
    color: var(--danger);
}

/* ===== Payment Section ===== */
.payment-section {
    background: var(--background);
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 1rem;
}

.payment-section h4 {
    margin-bottom: 1rem;
}

#card-element {
    background: var(--white);
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.payment-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    font-weight: 600;
}

.payment-total .amount {
    font-size: 1.25rem;
    color: var(--primary-blue);
}

.payment-total .amount.free {
    color: var(--success);
}

/* ===== Payment Breakdown ===== */
.payment-breakdown {
    margin: 0.75rem 0;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.payment-breakdown .price-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.35rem;
    color: var(--text-light);
}

.payment-breakdown .price-line span:last-child {
    font-weight: 500;
    color: var(--text-dark);
}

/* ===== Saved Fields Dropdown ===== */
.saved-fields-section {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.saved-fields-section label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.saved-fields-dropdown {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    background: var(--white);
}

/* ===== Payment Row (below map) ===== */
.payment-row {
    margin-top: 1.5rem;
}

.payment-panel {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 2rem;
    align-items: start;
}

.promo-section {
    max-width: 300px;
}

.promo-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.promo-row input {
    padding: 0.7rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
}

.promo-section label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.payment-panel .payment-section {
    margin-top: 0;
    max-width: 350px;
}

.payment-panel .form-actions {
    margin-top: 0;
    flex-direction: column;
    align-self: center;
}

.payment-panel .form-actions .btn {
    min-width: 140px;
}

/* ===== Map Marker Labels ===== */
.marker-label {
    background: rgba(0, 0, 0, 0.75);
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.marker-label::before {
    border-bottom-color: rgba(0, 0, 0, 0.75);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .report-section {
        padding: 1rem 0 2rem;
    }

    .report-section h1 {
        font-size: 1.5rem;
    }

    .report-grid {
        grid-template-columns: 1fr;
    }

    .form-panel {
        max-height: none;
    }

    #map {
        height: 50vh;
        min-height: 350px;
    }

    .payment-panel {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .promo-section {
        max-width: none;
    }

    .payment-panel .payment-section {
        max-width: none;
    }

    .payment-panel .form-actions {
        flex-direction: row;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .promo-form .form-row {
        grid-template-columns: 1fr;
    }

    .admin-table {
        font-size: 0.85rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .profile-section,
    .status-section,
    .admin-section {
        padding: 1rem 0 2rem;
    }
}

@media (max-width: 1024px) {
    .nav-user {
        margin-left: auto;
        margin-right: 0.75rem;
    }
}
