#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f5f5f5;  /* رمادي فاتح */
    color: #333333;  /* نص غامق للقراءة */
    padding: 15px;
    text-align: center;
    z-index: 999999;
    border-top: 3px solid #254682;  /* اللون الرئيسي */
    font-family: Arial, sans-serif;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    direction: rtl;  /* لمتجرك العربي */
}

#cookie-banner p {
    margin: 0 0 15px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
}

#cookie-banner a {
    color: #254682;  /* اللون الرئيسي */
    text-decoration: none;
    font-weight: bold;
}

#cookie-banner a:hover {
    text-decoration: underline;
    color: #203451;  /* اللون الثانوي */
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

#accept-btn {
    background: #254682;  /* اللون الرئيسي */
    color: white;
    border: none;
    padding: 8px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s ease;
}

#accept-btn:hover {
    background: #203451;  /* اللون الثانوي */
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(37, 70, 130, 0.3);
}

#reject-btn {
    background: #e0e0e0;  /* رمادي أفتح */
    color: #254682;  /* اللون الرئيسي */
    border: 1px solid #254682;
    padding: 8px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s ease;
}

#reject-btn:hover {
    background: #d0d0d0;
    transform: translateY(-2px);
}

/* للشاشات الصغيرة */
@media (max-width: 768px) {
    #cookie-banner {
        padding: 12px;
    }
    
    .cookie-buttons {
        gap: 8px;
    }
    
    #accept-btn,
    #reject-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}