/* Общие стили для всех типов уведомлений */
.scode-cookie-simple,
.scode-cookie-modern,
.scode-cookie-detailed {
    position: fixed;
    z-index: 1000;
    box-sizing: border-box;
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.4;
}

.scode-cookie-link {
    color: inherit;
    text-decoration: underline;
}

.scode-cookie-btn {
    cursor: pointer;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Позиционирование */
.scode-cookie-bottom {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.scode-cookie-top {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.scode-cookie-left {
    left: 20px;
    bottom: 20px;
    max-width: 320px;
}

.scode-cookie-right {
    right: 20px;
    bottom: 20px;
    max-width: 320px;
}

.scode-cookie-center {
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    max-width: 600px;
    width: 90%;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .scode-cookie-left,
    .scode-cookie-right,
    .scode-cookie-center,
    .scode-cookie-bottom,
    .scode-cookie-top {
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        bottom: 0;
        top: auto;
        transform: none;
        border-radius: 0 !important;
    }
}