/*Notifications and Cookie Consent*/
#cookie-consent {
    z-index: 12;
}

.x-alert {
    width: 500px;
    top: 9rem;
    right: 5rem;
    position: fixed !important;
    z-index: 3;
    padding: 0.95rem 1.45rem !important;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #2e2e2e63;
}

@media screen and (max-width: 675px) {
    .x-alert {
        width: 100%;
        top: 0;
        right: 0;
        font-size: 14px;
        border-radius: 0 !important;
    }
}

.alert-text {
    width: 95%;
    display: flex;
}

/* Success */
.x-alert-success {
    background-color: #4caf50; /* Normal yeşil */
    border-left: 5px solid #2e7d32; /* Koyu yeşil */
    color: #fff;
}

/* Danger */
.x-alert-danger {
    background-color: #f44336; /* Kırmızı */
    border-left: 5px solid #d32f2f; /* Koyu kırmızı */
    color: #fff;
}

/* Warning */
.x-alert-warning {
    background-color: #ff9800; /* Turuncu */
    border-left: 5px solid #f57c00; /* Koyu turuncu */
    color: #fff;
}

/* Info */
.x-alert-info {
    background-color: #2196f3; /* Mavi */
    border-left: 5px solid #1976d2; /* Koyu mavi */
    color: #fff;
}

/* Detail */
.x-alert-detail {
    background-color: #cce5ff;
    color: #004085;
}

/* Alert Close Button */
.x-alert-close {
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
    outline: none;
    color: #111111;
    padding: 0 0.7rem;
    background-color: #ffffff;
    font-size: 24px;
    border: none;
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    width: 38px;
}

.x-alert-close:hover {
    background-color: #ff1616f2;
    color: #ffffff;
}

.x-alert-close:focus {
    outline: 1px solid #d5d1d1;
}

/* Keyframes */
@keyframes successFade {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }
}

/*Cookie Consent*/
.cookie-consent-container {
    display: none;
    position: fixed;
    bottom: 0;
    z-index: 1000;
    margin-bottom: 0 !important;
    width: 100%;
    color: #121212;
    background-color: #ffffff;
    border-color: #ffffff;
    box-shadow: 1px 1px 12px 1px #29292942;
}

.cookie-left {
    padding: 2rem;
}

.cookie-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.accept-cookie-policy {
    background-color: #4caf50; /* Normal yeşil */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.accept-cookie-policy:hover {
    background-color: #2e7d32; /* Koyu yeşil */
} 