/* Container Box Custom Design Layout */
.bvr-widget-box {
    margin: 40px auto;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #ef4444;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    max-width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}

.bvr-widget-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.bvr-widget-text {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bvr-icon {
    font-size: 24px;
    line-height: 1;
}

.bvr-widget-text h4 {
    margin: 0 0 3px 0 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
}

.bvr-widget-text p {
    margin: 0 !important;
    font-size: 13px !important;
    color: #64748b !important;
    line-height: 1.4 !important;
}

/* Dynamic Interactive Submit Button */
.bvr-btn-action {
    background-color: #ef4444 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 10px 18px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    border-radius: 6px !important;
    transition: all 0.2s ease-in-out !important;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.2);
    white-space: nowrap;
}

.bvr-btn-action:hover {
    background-color: #dc2626 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(239, 68, 68, 0.3);
}

.bvr-btn-action:active {
    transform: translateY(0);
}

.bvr-btn-action:disabled {
    background-color: #cbd5e1 !important;
    color: #94a3b8 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    transform: none !important;
}

/* Async Dynamic Response Typography */
.bvr-status-msg {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    display: none;
    animation: bvrFadeIn 0.3s ease-out;
}

.bvr-status-msg.success {
    color: #16a34a;
}

.bvr-status-msg.error {
    color: #dc2626;
}

@keyframes bvrFadeIn {
    from { opacity: 0; transform: translateY(2px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Screen Layout Optimization */
@media (max-width: 580px) {
    .bvr-widget-flex {
        flex-direction: column;
        align-items: flex-start;
    }
    .bvr-btn-action {
        width: 100%;
        text-align: center;
    }
}
