.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    width: 90%;
    max-width: 360px;
    text-align: center;
    position: relative;
}

.modal__icon{
    margin: 0 auto 16px;
    width: 64px;
    height: 64px;
}

.modal__title {
    font-size: 20px;
    margin-bottom: 8px;
}

.modal__message {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
}

.modal__details {
    margin-bottom: 24px;
    text-align: left;
    font-size: 14px;
}

.modal__details-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.modal__details-label {
    color: #888;
}

.modal__details-value {
    font-weight: 500;
}

.modal__footer {
    margin-top: 24px;
}

.button {
    flex: 1;
    padding: 12px 0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.button--primary {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-radius: 8px;
    background: #1ac86d;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
}