/* Cookie Notice Styling (Simple US-compliant version) */

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
  padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 9999;
    font-size: 14px;
}

.cookie-notice a {
    color: #1c75bc; /* Brand blue */
    text-decoration: underline;
    margin: 0 10px;
}

.cookie-notice .btn-cookie-policy {
    background: transparent;
    color: #1c75bc; /* Brand blue */
    border: 1px solid #1c75bc; /* Brand blue */
  padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-cookie-policy:hover {
    background: #1c75bc; /* Brand blue */
    color: white;
}

.cookie-notice .btn-dismiss-notice {
    background: #f26522;
    color: white;
    border: none;
padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-notice .btn-dismiss-notice:hover {
    background: #d14d0f;
}

.cookie-notice.hidden {
    display: none;
}

/* Cookie Policy Modal Styling */
.cookie-policy-list {
    list-style: none;
    padding-left: 0;
}

.cookie-policy-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.cookie-policy-list li:last-child {
    border-bottom: none;
}

.cookie-policy-list li strong {
    color: #1c75bc; /* Brand blue for emphasis */
}

/* Ensure modal buttons use brand blue */
#cookieCompatibilityModal .btn-primary,
#cookiePolicyModal .btn-primary {
 background-color: #1c75bc !important;
    border-color: #1c75bc !important;
}

#cookieCompatibilityModal .btn-primary:hover,
#cookiePolicyModal .btn-primary:hover {
    background-color: #155a94 !important; /* Darker shade for hover */
    border-color: #155a94 !important;
}

/* Modal header brand blue background */
#cookiePreventativeModal .modal-header,
#cookiePolicyModal .modal-header {
    background-color: #1c75bc !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-notice {
        flex-direction: column;
   text-align: center;
        padding: 15px;
    }
    
    .cookie-notice .btn-cookie-policy {
        margin: 10px 0 0 0;
    }

    .cookie-notice .btn-dismiss-notice {
  margin-top: 10px;
    }
}
