.booked-ac-card-wrapper {
    border: 1px solid #D9EEF3;
    border-radius: 16px;
    padding: 8px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    max-width: 100%;
    margin-top: 16px;
}

.booked-ac-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #132D2F;
    margin-top: 0;
    margin-bottom: 8px;
}

.booked-ac-card-info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 9px;
}

.booked-ac-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #67B5C9; 
}

.booked-ac-info-text {
    font-size: 12px;
    font-weight: 600;
    color: #132D2F;
    margin: 0;
}

.booked-ac-policy-container {
    background-color: #F5F4F4;
    border-radius: 12px;
    padding: 8px;
    margin-top: 8px;
    margin-bottom: 12px;
}

.booked-ac-policy-title {
    font-size: 12px;
    font-weight: 700;
    color: #2d3748;
    margin-top: 0;
    margin-bottom: 8px;
}

.booked-ac-policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.booked-ac-policy-item {
    font-size: 12px;
    color: #4E4E4E;
    position: relative;
    padding-left: 15px;
    margin-bottom: 4px;
    line-height: 1.4;
}

.booked-ac-policy-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #132D2F;
}

.booked-ac-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 4px;
}

.booked-ac-total-label {
    font-size: 12px;
    font-weight: 500;
    color: #132D2F;
}

.booked-ac-total-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary); 
}