.dwo-shield-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    margin-top: 14px;
    border: 1px solid #dbe7f3;
    border-radius: 14px;
    background: #f8fafc;
}

.dwo-shield-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.dwo-shield-logo {
    width: 112px;
    height: auto;
    display: block;
    flex: 0 0 auto;
}

.dwo-shield-status {
    font-size: 12px;
    line-height: 1.35;
    color: #64748b;
}

.dwo-shield-status[data-state="working"] {
    color: #2563eb;
}

.dwo-shield-status[data-state="ok"] {
    color: #047857;
}

.dwo-shield-status[data-state="error"] {
    color: #b91c1c;
}

.dwo-shield-box.is-solved {
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.dwo-shield-box.is-error {
    border-color: #fecaca;
    background: #fef2f2;
}

button.is-disabled,
input[type="submit"].is-disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

@media (max-width: 640px) {
    .dwo-shield-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .dwo-shield-logo {
        width: 104px;
    }
}