﻿body {
    background-color: #f8f9fc;
}

/* Page Layout Styles */

/* Page Header */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.page-header-info {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.page-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

.page-subtitle {
    font-size: 0.875rem;
    color: #9ca3af;
}

.page-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Page Content */
.page-content {
    margin-bottom: 24px;
}

/* Page Section */
.page-section {
    margin-bottom: 32px;
}

.page-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 16px 0;
}

/* Filter Buttons */
.filter-group {
    display: flex;
    background-color: #f3f4f6;
    border-radius: 8px;
    padding: 4px;
}

.filter-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    color: #1a1a2e;
    text-decoration: none;
}

.filter-btn.active {
    background-color: #ffffff;
    color: #1a1a2e;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.25rem;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

.form-section-title{
    font-size: 18px;
}