﻿
.clickable{
    cursor:pointer;
}

.confirm_content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    text-align:center;
    font-weight:bold;
}

.confirm_buttons{
    display:flex;
    flex-direction:row;
    justify-content:space-around;
}

.affected_units_list {
    text-align: left;
    font-weight: normal;
    max-height: 160px;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #f8f9fa;
    padding: 6px 8px;
    margin-bottom: 8px;
    font-size: 0.82rem;
}

    .affected_units_list .unit_item {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 3px 0;
        border-bottom: 1px solid #ececec;
    }

        .affected_units_list .unit_item:last-child {
            border-bottom: none;
        }

    .affected_units_list .unit_code {
        background: #5f368d;
        color: white;
        border-radius: 3px;
        padding: 1px 5px;
        font-size: 0.75rem;
        white-space: nowrap;
    }

.confirm_buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
}
