/* Moveo Cookie Notice Styles */
#moveo-cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #17241E;
    color: #ffffff;
    z-index: 999999;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    font-family: inherit;
    display: none;
}

#moveo-cookie-notice.show {
    display: block;
}

#moveo-cookie-notice.hidden {
    display: none;
}

.moveo-cookie-notice-content {
    max-width: 1050px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.moveo-cookie-notice-text {
    flex: 1;
    min-width: 300px;
}

.moveo-cookie-notice-text p {
    margin: 0 0 0px 0;
    line-height: 1.6;
    font-size: 14px;
    color: #ffffff;
}

.moveo-cookie-notice-text p:last-child {
    margin-bottom: 0;
}

.moveo-cookie-notice-consent {
    font-weight: 600;
    margin-top: 4px !important;
}

.moveo-cookie-notice-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.moveo-cookie-button {
    padding: 12px 30px;
    border: none;
    background-color: #16542C;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 27px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.moveo-cookie-button:hover {
    background-color: #1d6a3a;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.moveo-cookie-button:active {
    transform: scale(0.98);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.moveo-cookie-close-btn {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    box-shadow: none;
}

.moveo-cookie-close-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    box-shadow: none;
}

.moveo-cookie-ok-btn {
    background-color: #16542C;
    color: #ffffff;
}

.moveo-cookie-ok-btn:hover {
    background-color: #1d6a3a;
}

/* Responsive Design */
@media (max-width: 768px) {
    #moveo-cookie-notice {
        padding: 15px;
    }
    
    .moveo-cookie-notice-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .moveo-cookie-notice-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .moveo-cookie-button {
        flex: 1;
        padding: 12px 20px;
    }
    
    .moveo-cookie-notice-text {
        min-width: auto;
    }
    
    .moveo-cookie-notice-text p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    #moveo-cookie-notice {
        padding: 12px;
    }
    
    .moveo-cookie-button {
        width: 100%;
    }
}

