#simple-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    z-index: 999999;
    font-family: inherit;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

#simple-cookie-consent p {
    margin: 0 1rem 0 0;
    flex: 1 1 300px;
}

#simple-cookie-consent .message-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 1rem;
    flex: 1 1 400px;
}

#simple-cookie-consent .message-wrapper p {
    margin: 0;
}

#simple-cookie-consent .message-wrapper a {
    text-decoration: underline;
    white-space: nowrap;
}

#simple-cookie-consent .buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

#simple-cookie-consent button {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: opacity 0.2s;
}

#simple-cookie-consent button:hover {
    opacity: 0.9;
}