.cookie-popup {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    background: white;
    padding: 35px;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border: 2px solid #ffd800;
    z-index: 1000;
    color: #808080;
    flex-wrap: wrap; /* Ensures responsiveness */
}

.cookie-content, .cookie-processing {
    flex: 1;
    text-align: left;
    max-width: 100%;
    font-family: "Trebuchet MS", sans-serif;
    font-size: 12px;
}

.cookie-buttons {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

    .cookie-buttons button {
        padding: 10px 15px;
        border: none;
        font-weight: bold;
        cursor: pointer;
        background: #c3f7c3;
        color: black;
        font-family: "Trebuchet MS", sans-serif;
        font-size: 12px;
    }

.cookie-links {
    color: blue;
    font-family: "Trebuchet MS", sans-serif;
    font-size: 12px;
}
