﻿body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

#cookieConsent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(34, 34, 34, 0.95);
    color: white;
    padding: 20px;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

    #cookieConsent span {
        text-align: center;
        font-size: 14px;
        line-height: 1.4;
        max-width: 800px;
    }

#cookieButtons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 600px;
}

.cookieBtn {
    flex: 1;
    min-width: 120px;
    background: #06458c;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .cookieBtn:hover {
        background: #05326b;
        color: white;
        transform: translateY(-1px);
    }

    .cookieBtn:active {
        transform: translateY(0);
    }

/* Tüm butonlar aynı mavi renk */
#acceptCookies {
    background: #06458c;
}

    #acceptCookies:hover {
        background: #05326b;
        color: white;
    }

#rejectCookies {
    background: #06458c;
}

    #rejectCookies:hover {
        background: #05326b;
        color: white;
    }

#essentialCookies {
    background: #06458c;
}

    #essentialCookies:hover {
        background: #05326b;
        color: white;
    }

@media (max-width: 500px) {
    #cookieButtons {
        flex-direction: column;
        width: 100%;
    }

    .cookieBtn {
        width: 100%;
        min-width: auto;
    }

    #cookieConsent {
        padding: 15px;
    }
}
