.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-sizing: border-box;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    direction: rtl; /* لدعم اللغة العربية */
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-text a {
    color: #f1c40f;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    font-family: inherit;
}

.btn-accept {
    background-color: #27ae60;
    color: white;
}

.btn-accept:hover { background-color: #219653; }

.btn-decline {
    background-color: #c0392b;
    color: white;
}

.btn-decline:hover { background-color: #a93226; }

/* توافق مع شاشات الجوال */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}