.cpb-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 25px;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.cpb-item {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.cpb-item a {
    text-decoration: none;
    color: #0073aa;
    font-weight: bold;
}

.cpb-item a:hover {
    text-decoration: underline;
}

/* للموبايل */
@media (max-width: 480px) {
    .cpb-bar {
        flex-direction: column;
        gap: 12px;
        width: 90%;
    }

    .cpb-item {
        font-size: 15px;
    }
}
