#cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    max-width: 90%;
    width: 850px;
    display: none;
}
#cookie-consent p {
    margin: 0;
    flex-grow: 1;
    padding-right: 15px;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
}
#cookie-consent button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    white-space: nowrap;
}
#cookie-consent button:hover {
    background: #45a049;
}
@media (max-width: 768px) {
    #cookie-consent {
        flex-direction: column;
        text-align: center;
    }
    #cookie-consent p {
        padding-right: 0;
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    #cookie-consent button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}