/* Popup container */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #f9f4ec;
    border-top: 1px solid #e5d3c6;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    width: 100%; /* %100 genişlikte */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Sol taraf: Logo */
.cookie-left {
    flex: 0 0 10%; /* Logo için %10 genişlik */
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-logo {
    max-width: 100px; /* Logo boyutunu belirleyin */
    height: auto;
}

/* Ortadaki yazı */
.cookie-center {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.cookie-text {
    font-size: 1em;
    color: #6b5c58;
    line-height: 1.6;
}

/* Sağda butonlar */
.cookie-right {
    flex: 0 0 15%; /* Butonlar için %15 genişlik */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.cookie-right button {
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    width: 200px;
    border: 1px solid;
}

.accept-btn {
    background-color: #9b7b72;
    color: #fff;
}

.manage-btn {
    background-color: transparent;
    color: #9b7b72;
    border: 1px solid #9b7b72;
}

.reject-btn {
    background-color: #f1e3db;
    color: #9b7b72;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #9b7b72;
}
.disableScreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999; 
    display: none; 
  }

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: center;
    }

    .cookie-left,
    .cookie-center,
    .cookie-right {
        width: 100%;
        text-align: center;
    }

    .cookie-right button {
        width: 100%;
    }

    .close-btn {
        top: 5px;
        right: 5px;
    }
}




