#cookie-policy {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #333;
    color: #fff;
    text-align: center;
    padding: 15px 20px;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column; /* Butonu alt tarafa yerleştirmek için */
    align-items: center;
    z-index: 9999;
    max-width: 300px;
}
#cookie-policy p {
    margin: 0;
    padding: 0;
    font-size: 12px;
}
#cookie-policy a {
    color: #ff0000;
    text-decoration: none;
}
#cookie-policy button {
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
}