.card .image-container {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
    align-content: flex-end;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
}
.card img.img-circles {
    width: 145px;
    height: 145px;
    top: 361px;
    left: 742px;
    border-radius: 90px;
}
.card span.change-icon {
    width: 35px;
    height: 35px;
    position: absolute;
    background: #d9d9d9;
    border: 1.5px solid rgba(0, 0, 0, 1);
    border-radius: 7px;
    text-align: center;
    line-height: 34px;
    font-size: 34px;
    bottom: -5px;
    cursor: pointer;
}
.card .image-required {
    position: absolute;
    bottom: -30px;
    text-align: center;
}

/* Accordion Custom Style with Smooth Animation */
.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 20px 25px;
    background-color: #fff;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    margin-bottom: 10px;
}

.custom-table th,
.custom-table td {
    border: 1px solid #ddd;
    padding: 14px 16px;
    text-align: left;
}

.radio-label {
    display: inline-block;
    margin-right: 15px;
}
/* Tabs */
.tabs-buttons {
    display: flex;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}
.tab-btn {
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    background: none;
    font-weight: bold;
}
.tab-btn.active {
    border-bottom: 3px solid #0d6efd;
    color: #0d6efd;
}
.tab-pane {
    display: none;
}
.tab-pane.active {
    display: block;
}

/* Accordion Style */
.accordion-item {
    border: 1px solid #ccc;
    margin-bottom: 5px;
    border-radius: 6px;
    overflow: hidden;
}
.accordion-button {
    width: 100%;
    text-align: left;
    padding: 12px 15px;
    border: none;
    background: #f7f7f7;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    transition: background 0.3s;
}
.accordion-button:hover {
    background: #e2e8f0;
}
.accordion-button .icon {
    transition: transform 0.3s ease;
}
.accordion-item.active .accordion-button .icon {
    transform: rotate(45deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 10px;
    border-top: 1px solid #ccc;
}
.accordion-item.active .accordion-content {
    padding: 10px;
}

/* Table */
.radio-label {
    display: block;
    margin-bottom: 5px;
}
input[type="radio"] {
    accent-color: blue;
}
.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #198754;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
}
.toast-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.auto-hide {
    opacity: 1;
    max-height: 200px;
    overflow: hidden;
    transition: opacity 0.6s ease, max-height 0.6s ease, margin 0.6s ease;
    margin-bottom: 1rem;
}

.auto-hide.hide {
    opacity: 0;
    max-height: 0;
    margin: 0;
}


/* upload file ofr questions */
.dz-preview .dz-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    line-height: 22px;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    z-index: 1000;
    cursor: pointer;
    transition: background 0.2s;
}

.dz-preview .dz-remove:hover {
    background: rgba(255, 0, 0, 0.8);
}

.dropzone .dz-preview {
    width: 120px;
    height: 120px;
}

.dropzone .dz-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tooltip-custom {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip-custom .tooltip-text {
    visibility: hidden;
    width: 220px;
    background-color: #343a40;
    color: #fff;
    text-align: start;
    padding: 8px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.4;
    position: absolute;
    z-index: 10;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip-custom .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #343a40 transparent transparent transparent;
}

.tooltip-custom:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.fixSide {
    text-align: start;
}
