.cookie-consent-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid #007bff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 10000;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.cookie-consent-text {
    font-size: 14px;
    line-height: 1.4;
    max-height: 200px;
    overflow: auto;
    margin-bottom: 1rem;
}

.cookie-btn-details {
    font-size: 14px;
    line-height: 20px;
    color: #007bff;
    cursor: pointer;
    text-decoration: underline;
}

.cookie-btn-details:hover {
    color: #0056b3;
}

.cookie-btn-agree {
    width: 40px !important;
    height: 40px !important;
    background-color: #007bff;
    cursor: pointer;
    position: absolute;
    bottom: 100%;
    right: calc(50% - min(640px,50vw));
    margin-right: 10px;
    border-radius: 23px 23px 0 0 !important;
    border: none;
}

.cookie-btn-agree::after,
.cookie-btn-agree::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 8px);
    height: 1px;
    transform-origin: left;
    background: #44566e;
    width: calc(100% - 20px) !important;
    background: #fff !important;
}

.cookie-btn-agree::before {
    transform: rotate(-45deg) translateX(-50%);
}

.cookie-btn-agree::after {
    transform: rotate(45deg) translateX(-50%);
  }

.cookie-btn-agree:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
}
