.page-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap-md);
}

.page-title {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
}

.page-actions {
    display: flex;
    gap: var(--gap-sm);
    align-items: center;

    .btn {
        flex-shrink: 0;
        width: auto;
    }
}

.page-footer {
    display: flex;
    justify-content: space-between;
    gap: var(--gap-lg);
    padding: var(--spacing-4);
    background: var(--surface);
    border-radius: var(--rounded-xl);
    box-shadow: var(--shadow-sm);

    .btn {
        width: auto;
        min-width: 120px;
    }
}

@media (max-width: 639px) {
    .page-header {
        flex-direction: column;
    }

    .page-title {
        font-size: var(--text-xl);
    }
}
