/* overlay */
.adb-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.6);
    z-index: 9999;
}

/* dialog */
.adb-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 520px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
}

/* header */
.adb-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border-bottom: 1px solid #eee;
}

.adb-icon {
    font-size: 20px;
}

.adb-title {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

/* content */
.adb-content {
    padding: 20px;
    font-size: 15px;
    color: #555;
}

/* buttons */
.adb-actions {
    display: flex;
    gap: 10px;
    padding: 16px;
}

/* 버튼 전용 (절대 button 전체 건들지 않음) */
.adb-btn {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.adb-btn-cancel {
    background: #e9ecef;
    color: #333;
}

.adb-btn-confirm {
    background: #2c7be5;
    color: #fff;
}

.adb-btn:hover {
    opacity: 0.9;
}