/* Custom Dialog System Styles */
.hcie-dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hcie-dialog-overlay.active {
    opacity: 1;
}

.hcie-dialog-box {
    background: var(--bg-panel);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    width: 400px;
    box-shadow: 0 20px 40px var(--shadow-inset);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--text-primary);
    font-family: 'Inter', 'Roboto', sans-serif;
}

.hcie-dialog-overlay.active .hcie-dialog-box {
    transform: translateY(0);
}

.hcie-dialog-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hcie-dialog-message {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 24px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.hcie-dialog-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hcie-dialog-btn {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    background: var(--bg-input);
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hcie-dialog-btn:hover {
    background: var(--bg-hover);
    border-color: var(--border-color);
    transform: scale(1.02);
}

.hcie-dialog-btn-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 198, 255, 0.1);
    border-radius: 8px;
    color: #00c6ff;
}

.hcie-dialog-btn-text-main {
    font-weight: 600;
    display: block;
}

.hcie-dialog-btn-text-sub {
    font-size: 12px;
    opacity: 0.6;
    display: block;
    color: var(--text-muted);
}

.hcie-dialog-actions {
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
}

.hcie-dialog-cancel {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px 16px;
    font-size: 14px;
    transition: color 0.2s;
}

.hcie-dialog-cancel:hover {
    color: #ff4d4d;
}