#wmr-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: #c6cbc5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 20px;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333;
}

.wmr-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.wmr-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 280px;
}

.wmr-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.wmr-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.wmr-actions {
    display: flex;
    gap: 10px;
}

.wmr-btn {
    padding: 10px 18px;
    border-radius: 4px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.wmr-btn.primary {
    background-color: #004a59;
    color: #fff;
}

.wmr-btn.primary:hover { background-color: #003642; }

.wmr-btn.secondary {
    background-color: #f1f1f1;
    color: #444;
}

.wmr-btn.secondary:hover { background-color: #e5e5e5; }

#wmr-settings-panel {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.wmr-settings-row label {
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wmr-hidden { display: none !important; }

@media (max-width: 768px) {
    .wmr-container { flex-direction: column; align-items: flex-start; }
    .wmr-actions { width: 100%; justify-content: flex-end; }
}