/* RESET */
*{
    box-sizing: border-box;
}

/* MAIN WRAPPER */
.smm-dashboard-wrapper {
    max-width: 1250px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    font-family: "Inter", sans-serif;
}

/* HEADINGS */
.smm-dashboard-wrapper h2,
.smm-dashboard-wrapper h3 {
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 18px;
}

/* WELCOME SECTION */
.smm-welcome {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 25px;
    border-radius: 18px;
    margin-bottom: 35px;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* BALANCE CARD */
.smm-balance-card {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    padding: 30px;
    border-radius: 20px;
    color: white;
    margin-bottom: 35px;
    box-shadow: 0 5px 25px rgba(37, 99, 235, 0.25);
}

.smm-balance-title {
    font-size: 18px;
    opacity: 0.85;
}

.smm-balance-amount {
    font-size: 40px;
    font-weight: 900;
    margin-top: 8px;
}

/* CARDS */
.smm-card {
    padding: 25px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    margin-bottom: 25px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.04);
}

/* INPUTS */
.smm-dashboard-wrapper select,
.smm-dashboard-wrapper input[type="text"],
.smm-dashboard-wrapper input[type="number"],
.smm-dashboard-wrapper input[type="password"],
.smm-dashboard-wrapper input[type="email"] {
    width: 100%;
    padding: 14px;
    margin-top: 6px;
    margin-bottom: 16px;
    border-radius: 14px;
    border: 1px solid #cbd5e1;
    background: #f1f5f9;
    font-size: 15px;
    transition: all 0.25s ease;
}

.smm-dashboard-wrapper select:focus,
.smm-dashboard-wrapper input:focus {
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.25);
    outline: none;
}

/* BUTTONS */
.smm-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 14px 22px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s;
    margin-top: 5px;
}

.smm-btn:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
}

/* TABLE */
.smm-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 18px rgba(0,0,0,0.06);
}

.smm-table th {
    background: #1e293b;
    color: white;
    padding: 14px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.smm-table td {
    padding: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.smm-table tr:hover td {
    background: #f1f5f9;
}

/* LOGOUT */
.smm-logout {
    text-align: right;
    margin-top: 35px;
}

.smm-logout a {
    color: #dc2626;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
}

.smm-logout a:hover {
    text-decoration: underline;
}

/* ORDER FORM GRID */
.smm-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

@media(max-width: 780px){
    .smm-form-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA BAR */
.smm-cta-bar {
    background: linear-gradient(135deg, #0ea5e9, #0369a1);
    padding: 18px;
    text-align: center;
    border-radius: 15px;
    margin: 35px 0;
    color: white;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 3px 18px rgba(14,165,233,0.25);
}
