.guest-cancel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.guest-cancel-dialog {
    background: #fff;
    border-radius: 8px;
    padding: 2rem 2.5rem;
    width: 28rem;
    max-width: 90vw;
    position: relative;
    box-sizing: border-box;
}
.guest-cancel-close {
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    line-height: 1;
}
.guest-cancel-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-bottom: 1rem;
}
.guest-cancel-policy {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}
.guest-cancel-field {
    margin-bottom: 1rem;
}
.guest-cancel-field label {
    display: block;
    font-size: 0.875rem;
    color: #333;
    margin-bottom: 0.4rem;
}
.guest-cancel-field input {
    width: 100%;
    height: 2.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 0.75rem;
    font-size: 0.875rem;
    box-sizing: border-box;
    outline: none;
}
.guest-cancel-field input:focus {
    border-color: #b8860b;
}
.guest-cancel-field input[readonly] {
    background: #f5f5f5;
    color: #999;
}
.guest-cancel-code-row {
    display: flex;
    gap: 0.5rem;
}
.guest-cancel-code-row input {
    flex: 1;
}
.guest-cancel-code-row button {
    width: 7rem;
    height: 2.5rem;
    border: 1px solid #b8860b;
    background: #fff;
    color: #b8860b;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    white-space: nowrap;
}
.guest-cancel-code-row button:disabled {
    border-color: #ccc;
    color: #ccc;
    cursor: not-allowed;
}
.guest-cancel-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
}
.guest-cancel-btn-no,
.guest-cancel-btn-yes {
    flex: 1;
    height: 2.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
}
.guest-cancel-btn-no {
    background: #f5f5f5;
    color: #333;
}
.guest-cancel-btn-yes {
    background: #b8860b;
    color: #fff;
}
@media screen and (max-width: 1199px) {
    .guest-cancel-dialog {
        width: 90vw;
        padding: 1.5rem;
    }
}
