.custom-card-header {
    background-color: #ffffff;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #dee2e6;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .header-content {
        flex-direction: row;
        align-items: center;
    }
}

.header-title text-create {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d6efd; /* Bootstrap primary */
    display: flex;
    align-items: center;
    padding-bottom: 5px;
}

.header-subtitle {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d; /* text-muted */
 
}

.icon {
    margin-right: 0.5rem;
    font-size: 1.1rem;
    color: #0d6efd;
}

.btn-back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    border-radius: 50rem;
    border: 1px solid #ced4da;
    background-color: transparent;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    font-weight: 600
}

.btn-back:hover {
    background-color: #f8f9fa;
    text-decoration: none;
    color: #343a40;
    border-color: #adb5bd;
    font-weight: 600
}
