.cookie-modal {
    position: fixed;
    bottom: -200px;
    left: 20px;
    width: 30vw;             
    max-width: 450px;        
    min-width: 300px;   
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 25px 20px;
    transition: bottom 0.5s ease;
    font-family: 'Arial', sans-serif;
    margin-bottom: 65px;
    border-radius: 6px;
}

.cookie-modal.show-cookie {
    bottom: 0;
}

.cookie-content {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h4 {
    margin-bottom: 10px;
    font-size: 20px;
}

.cookie-content p {
    font-size: 14px;
    margin-bottom: 15px;
}

#accept-cookie-btn {
    background-color: #21c55d;
    border: none;
    color: #fff;
    padding: 10px 25px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#accept-cookie-btn:hover {
    background-color: #15803d;
}