#priority {
    width: 60px;
    /* Adjust the width as needed */
}

td.drag-handle {
    font-size: 1.5em;
    /* Make the drag icon bigger */
    cursor: grab;
}

.column-priority .priority-value {
    display: inline-block;
    width: auto;
    font-weight: bold;
    /* Optional styling for better visibility */
}

#the-list tr {
    height: 50px;
}

#the-list tr td {
    vertical-align: middle;
}

#the-list tr th {
    vertical-align: middle;
    padding: 0px;
}

#hiint-campaign-type-popup {
    display: none;
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    width: 400px;
    text-align: center;
    z-index: 1000;
    border-radius: 10px
}

#hiint-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

*/

/* Dark background overlay */
#hiint-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

/* Popup Modal */
/* #hiint-campaign-type-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 20px;
    border-radius: 8px;
} */

/* Close button */
.close-popup-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.hiint-add-new-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Adjust to 4x4 if you add more cards */
    gap: 10px;
    margin: 50px 20px 20px 20px;
}

.hiint-add-new-card {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.hiint-add-new-card:hover {
    background: #007cba;
    color: #fff;
    border-color: #007cba;
}

#hiint-campaign-type-popup .hiint-add-new-grid {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.back-button {
    margin-top: 20px;
    display: block;
    background: #207ce8;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    text-align: center;
    border-radius: 4px;
}

.back-button:hover {
    background: #005bb5;
}

.badge {
    display: inline-block;
    background-color: #ff4500;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 12px;
    margin-left: 5px;
    vertical-align: middle;
}