.sas-question-mark {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
    margin-left: 8px;
    font-weight: bold;
}

.sas-modal-overlay {
    overflow: auto;
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.sas-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    font-family: sans-serif;
}

.sas-close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 35px;
    cursor: pointer;
    color: #aaa;
}

.sas-plan-checker {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    gap: 10px;
}

.sas-plan-item {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    background: #f4f7f9;
    border: 1px solid #eee;
}

.sas-plan-name {
    font-size: 12px;
    margin-bottom: 5px;
    color: #666;
}

.sas-plan-status {
    font-weight: bold;
    font-size: 14px;
}

.status-yes { color: #28a745; }
.status-no { color: #dc3545; }