/* Cookies */
/* Cookie Consent Banner Styling */
#ccb {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Ensure the banner stays on top */
}
  
#ccb button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px 15px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
}
  
#ccb button:hover {
    background-color: #0056b3;
}
  
/* Hide banner initially if cookies are accepted */
#ccb {
    display: block;
}