	/*
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */

.alert {
    padding: 15px;
    margin-bottom: 0px;
    border: 1px solid transparent;
    border-radius: 0px;
}
.text-center {
    text-align: center;
}
.btn-sm, .btn-group-sm>.btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}
.btn-primary {
    color: #fff;
    background-color: #428bca;
    border-color: #357ebd;
}
.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}
/* Updated CSS to minimize impact */
.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: #000000;
    font-size: 13px;
    line-height: 2;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 -1px 3px rgba(0,0,0,0.1);
    pointer-events: none;
}

.cookiealert.show {
    opacity: .7;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.cookiealert-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.cookiealert-container p {
    margin: 0px 0 0px 0;
}
.cookiealert-text {
    /*flex: 1;*/
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

#cookieAccept {
    padding: 6px 12px;
    font-size: 12px;
    white-space: nowrap;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookiealert-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookiealert {
        padding: 15px;
    }
}