﻿
/* Drag and Drop Visual Indicators */
.col-drop-indicator {
    border-left: 3px solid #ff9900 !important; /* Distinct CRM Orange insertion line */
}

.col-dragging {
    opacity: 0.5; /* Fades the column header while it is being dragged */
}

/* Custom CRM Confirm Modal */
.crm-confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999; /* Ensure it floats above all other CRM popups */
}

.crm-confirm-box {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
    text-align: center;
    max-width: 400px;
    border-top: 4px solid #ff9900;
}

    .crm-confirm-box p {
        margin: 0 0 20px 0;
        font-size: 16px;
        color: #333333;
        line-height: 1.4;
    }

.crm-confirm-btn {
    padding: 8px 20px;
    margin: 0 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: opacity 0.2s;
}

    .crm-confirm-btn:hover {
        opacity: 0.8;
    }

.crm-btn-yes {
    background-color: #ff9900;
    color: #ffffff;
}

.crm-btn-no {
    background-color: #e0e0e0;
    color: #333333;
}
