/**
 * OptiCache Uninstall Warning Modal Styles
 */

.opticache-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100100;
}

.opticache-modal {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    max-width: 445px;
    width: 90%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.opticache-modal-header {
    background: #f1f1f1;
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.opticache-modal-header .dashicons-warning {
    color: #d63638;
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.opticache-modal-title {
    font-size: 16px;
    font-weight: 600;
    color: #1d2327;
}

.opticache-modal-body {
    padding: 12px 20px 15px 20px;
}

.opticache-modal-body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #3c434a;
}

.opticache-modal-footer {
    padding: 12px 20px;
    background: #f1f1f1;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.opticache-modal-footer .opticache-modal-right-buttons {
    display: flex;
    gap: 10px;
}

.opticache-modal-footer .button {
    min-width: 100px;
}

.opticache-modal-footer .button-primary {
    background: #d63638;
    border-color: #d63638;
}

.opticache-modal-footer .button-primary:hover,
.opticache-modal-footer .button-primary:focus {
    background: #b32d2e;
    border-color: #b32d2e;
}
