.cpb-separator {
    border: none;
    border-top: 1px solid #ccc;
    margin: 20px 0 15px 0;
}

.cpb-buttons-container {
 
    flex-direction: column;
    gap: 12px;
}

.cpb-btn {
    background-color: #24aa00;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    transition: background-color 0.3s;
    text-align: center;
    font-family: 'iranyekan';
    margin: 5px;
}

.cpb-btn:hover {
    background-color: #005177;
}

/* استایل پاپ‌آپ */
.cpb-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.cpb-popup-content {
    background: white;
    padding: 20px;
    max-width: 600px;
    margin: 100px auto;
    border-radius: 6px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.cpb-close {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 25px;
    cursor: pointer;
    color: #444;
}