/* style.css */
:root {
    --brand-red: #D60000;
    --brand-dark: #8B0000;
    --brand-white: #FFFFFF;
}

body { background-color: #f8f9fa; font-family: 'Segoe UI', sans-serif; }

/* Dashboard Styles */
.hero {
    background: linear-gradient(135deg, var(--brand-red), var(--brand-dark));
    color: white;
    padding: 50px 0;
    margin-bottom: -30px;
}

.main-card {
    border-top: 4px solid var(--brand-red);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-maimarkazi {
    background-color: var(--brand-red);
    color: white;
    font-weight: bold;
    border: none;
}
.btn-maimarkazi:hover {
    background-color: var(--brand-dark);
    color: white;
}

/* Chat Bridge Page Styles */
.chat-container {
    max-width: 450px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 5px solid #25D366; /* WhatsApp Green */
}
.wa-btn {
    background-color: #25D366;
    color: white;
    font-weight: bold;
    font-size: 18px;
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    border: none;
    transition: 0.3s;
}
.wa-btn:hover { background-color: #1ebc57; }