.cookie-icon {
    position: fixed;
    z-index: 40;
    cursor: pointer;
}

.cookie-icon-top-right {
    top: 5rem;
    right: 1rem;
}

.cookie-icon-top-left {
    top: 5rem;
    left: 1rem;
}

.cookie-icon-bottom-right {
    bottom: 4rem;
    right: 1rem;
}

.cookie-icon-bottom-left {
    bottom: 4rem;
    left: 1rem;
}

.cookie-icon-center-right {
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
}

.cookie-icon-center-left {
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
}

.cookie-icon-image {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.25rem; /* Değişti: 50% yerine 0.25rem (kare köşeli) */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.cookie-icon-image:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.cookie-icon-default {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #4a5568;
    border-radius: 0.25rem; /* Değişti: 50% yerine 0.25rem (kare köşeli) */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.cookie-icon-default:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}