.asteriskField {
    display: none;
}

.required label:not(.btn)::after {
    content: ' *';
    color: red;
}

h2.titre_page2 {
    margin: 0 0 30px;
}

.checkbox label, .radio label {
    font-weight: 700;
}

.input-group-button {
    padding: 0 0 0 5px;
    border-color: transparent;
    background: none;
}

.extra-section {
    border: 1px solid #00477d;
    border-top: none;
    padding: 8px 16px;
}

.tab-section {
    border: 1px solid #00477d;
    border-top: none;
    padding: 8px 16px;
    display: none;
}

@media (min-width: 768px) {
    .tab-section, .extra-section {
        padding: 16px 32px;
    }
}

.tab-section.active {
    display: block;
}

/* .nav-tabs {
    margin-top: 16px;
    border-bottom: 1px solid #00477d;
}

.nav-tabs li {
    border-radius: 4px 4px 0 0;
    border: 1px solid #00477d;
    cursor: pointer;
    margin-right: 2px;
}

.nav-tabs li.active {
    border: 1px solid #f2962a;
    border-bottom: none;
}

.nav-tabs li.active a {
    border: 1px solid transparent;
} */

.nav-tabs {
    margin-top: 16px;
    border-bottom-color: #00477d !important;
}

.nav-tabs li a {
    border-left-color: #00477d !important;
    border-right-color: #00477d !important;
    border-top-color: #00477d !important;
    color: #00477d !important;
}

.nav-tabs li.active a {
    color: #f2962a !important;
}

.timeline-wrapper {
    display: flex;
    margin: 0px 24px;
    padding-bottom: 12px;
}
.timeline {
    width: 85%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    padding: 12px 32px;
}
.timeline-vertical-line {
    width: 1px;
    border: 1px solid #66a3d1;
}
.timeline-item {
    margin: 10px -53px;
    display: flex;
    gap: 12px;
}
.timeline-item-description {
    align-self: center;
    max-width: 300px;
    width: 100%;
}
.timeline-item-description > div {
    align-items: center;
    display: flex;
}
.timeline-item-description h1{
    font-weight: bold;
    display: inline-block;
}
.timeline-item-description .separator{
    margin-left: auto;
}
.timeline-item-description .date{
    color: #ccc;
}
.timeline-item-icon .icon {
    background-color: #66a3d1;
    display: inline-block;
    margin: auto;
    width: 80%;
    height: 80%;
}
.timeline-item-icon {
    display: flex;
    background-color: #fff;
    border: 2px solid #66a3d1;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}
/* .icon-document {
    mask: url('/static/images/document.svg');
}
.icon-document.CLAIM_HISTORY_NEW {
    mask: url('/static/images/document-add.svg');
}
.icon-document.CLAIM_HISTORY_EDIT {
    mask: url('/static/images/document-edit.svg');
}
.icon-document.CLAIM_HISTORY_CANCEL {
    mask: url('/static/images/document-cancel.svg');
}
.icon-document .CLAIM_HISTORY_APPROVE {
    mask: url('/static/images/document-check.svg');
}
.icon-document .CLAIM_HISTORY_REJECT {
    mask: url('/static/images/document-cancel.svg');
}
.icon-document .CLAIM_HISTORY_FINALIZE {
    mask: url('../images/document-check.svg');
} */

label[for="id_confirm"] {
    font-weight: normal;
}

/* Message conversation styles */
.messages-conversation {
    margin-top: 20px;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 10px;
}

.message-card {
    background: #fff;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.message-header {
    background: #f8f9fa;
    padding: 12px 16px;
    border-bottom: 1px solid #e1e5e9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.message-sender {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.message-sender i {
    color: #6c757d;
}

.message-timestamp {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6c757d;
}

.message-body {
    padding: 16px;
    line-height: 1.5;
    color: #333;
}

.message-body p {
    margin-bottom: 12px;
}

.message-body p:last-child {
    margin-bottom: 0;
}

.message-expand-btn, .message-collapse-btn {
    background: none;
    border: none;
    color: #007bff;
    font-size: 13px;
    padding: 8px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    transition: color 0.2s;
}

.message-expand-btn:hover, .message-collapse-btn:hover {
    color: #0056b3;
    text-decoration: underline;
}

.message-preview p:last-child {
    margin-bottom: 8px;
}
