/* Modal Styling */
.modal-breakdown {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 300px;
    animation: fadeIn 0.3s ease-in-out;
}

.modal-breakdown-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-breakdown-content p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.modal-breakdown-content textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    resize: vertical;
}

.modal-breakdown-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.modal-breakdown-button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.confirm-button {
    background-color: #d9a300;
    color: white;
}

.confirm-button:hover {
    background-color: #218838;
}

.cancel-button {
    background-color: #dc3545;
    color: white;
}

.cancel-button:hover {
    background-color: #c82333;
}

/* Overlay Styling */
.modal-breakdown-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: fadeIn 0.3s ease-in-out;
}

/* Animation for Modal and Overlay */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#refbdown{
  color: red;
}
#bdref{
  color: red;
  font-weight: 700;
}

.hidden{
  display: none!important;
}

.custom_promo_block{
color: black;
padding-left: 0px;
font-size: 14px;
margin-bottom: 20px;
margin-top: 20px;
}