/* Container chính */
.fcpdc-container {
    background-color: #FFFCF0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding-top: 5px ;
    padding-right: 20px ;
    padding-bottom: 30px ;
    padding-left: 20px ;
    border-left: 6px solid #F3C300 !important;
}

/* Tiêu đề */
.fcpdc-title {
    color: #F3C300;
    margin-bottom: 20px;
}

/* Tab */
.nav-tabs .nav-links {
    color: #F3C300;
    font-weight: 500;
}
.nav-tabs .nav-links.active {
    background-color: #F3C300;
    border-color: #F3C300 #F3C300 #FFFCF0 !important;
 color: #131000; /* gần đen */
}
.nav-tabs {
    border-bottom: 2px solid #F3C300 !important ;
}

/* Form label */
.form-group-label {
    color: #000;
    font-weight: 500;
    margin-bottom: 5px;
}

/* Input */
.form-control {
    border-radius: 5px;
    Background:#fff;
}

/* Nút */
.btn-primary {
    background-color: #007bff;
}
/* Ẩn */
.hidden {
    display: none !important;
}

/* assets/css/styles.css */

/* Đảm bảo input[type="text"] trong #groom-form giống select.form-select */
#groom-form input[type="text"] {
    /* Kiểu dáng giống dropdown */
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #FFF !important;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;

    /* Placeholder giống select */
    appearance: none; /* Loại bỏ style mặc định của trình duyệt */
    -webkit-appearance: none;
    -moz-appearance: none;
}

#groom-form input[type="text"]::placeholder {
    color: #6c757d; /* Màu placeholder giống select */
    opacity: 1;
}

/* Hiệu ứng focus giống select */
#groom-form input[type="text"]:focus {
    color: #212529;
    background-color: #fff;
    border-color: #F3C300; /* Dùng màu chủ đạo thay vì màu xanh mặc định */
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(199, 71, 119, 0.25); /* Shadow dùng màu #c74777 */
}

/* Hiệu ứng disabled giống select */
#groom-form input[type="text"]:disabled,
#groom-form input[type="text"][readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

/* Đảm bảo responsive */
@media (max-width: 576px) {
    #groom-form input[type="text"] {
        font-size: 0.875rem; /* Giảm kích thước trên mobile */
        padding: 0.25rem 0.5rem;
    }
}

/* Biểu đồ */
.chart-container {
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    text-align: center;
}

.chart-container canvas {
    max-width: 100%;
    height: auto !important;
}

@media (min-width: 768px) {
    .chart-container {
        max-width: 400px;
    }
}

@media (min-width: 1200px) {
    .chart-container {
        max-width: 500px;
    }
}

