.gdpr_cookie_bar {
    position: fixed;
    bottom: 20px; /* Floating effect */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: #f9f9f9; /* Light background for a cleaner look */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    z-index: 9999;
    padding: 20px;
    font-family: 'Arial', sans-serif;
}

.gdpr_cookie_bar_title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.gdpr_cookie_bar_description {
    font-size: 14px;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}

.gdpr_cookie_bar_option {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.gdpr_cookie_bar_option span {
    display: inline-flex;
}

.gdpr_cookie_bar .gdpr_cookie_bar_option_checkbox {
    margin-right: 10px;
    margin-top: 3px;
    cursor: pointer;
}

.gdpr_cookie_bar .gdpr_cookie_bar_option_title {
    font-weight: 600;
    color: #333;
}

.gdpr_cookie_bar .gdpr_cookie_bar_option_description {
    font-size: 12px;
    color: #666;
    margin-left: 20px;
}

.gdpr_cookie_bar .gdpr_cookie_bar_accept {
    display: block;
    margin: 20px auto 0;
    border: none;
    background-color: #4CAF50;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.gdpr_cookie_bar .gdpr_cookie_bar_accept:hover {
    background-color: #45a049;
}

.gdpr_cookie_bar.hidden {
    bottom: -200px;
    opacity: 0;
    transition: all 0.3s ease;
}

.gdpr_cookie_bar .gdpr_cookie_bar_close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    padding: 5px;
}

.gdpr_cookie_bar .gdpr_cookie_bar_close:after, .gdpr_cookie_bar .gdpr_cookie_bar_close:before {
    content: "";
    display: block;
    width: 2px;
    height: 16px;
    background-color: #555;
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%);
}

.gdpr_cookie_bar .gdpr_cookie_bar_close:after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.gdpr_cookie_bar .gdpr_cookie_bar_close:before {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.gdpr_cookie_settings_button {
    display: none !important;
}

