/* ===================================
   UUG FRONTEND — GLOBAL STYLES
   Stats, dashboards, shared UI
=================================== */

/* Wrapper */
.uug-stats-summary-wrapper {
    max-width: 520px;
    margin: 40px auto;
    padding: 0 16px;
}

/* Card */
.uug-stats-card {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

/* Header */
.uug-stats-header {
    background: #000;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 18px;
    letter-spacing: 0.4px;
}

/* Body (shared for all stats blocks) */
.uug-stats-summary,
.uug-stats-games {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ===============================
   STATS ROWS (DISPLAY ONLY)
================================ */

.uug-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.6;
}

/* Labels */
.uug-stat-label {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

/* Values */
.uug-stat-value {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

/* ===============================
   GAME STATS
================================ */

.uug-game-block {
    padding-top: 18px;
    margin-top: 6px;
}

.uug-game-block:not(:first-child) {
    border-top: 1px solid #eee;
}

.uug-game-title {
    font-weight: 700;
    font-size: 15px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.uug-game-block .uug-stat-row {
    margin-bottom: 12px;
}

.uug-game-block .uug-stat-row:last-child {
    margin-bottom: 0;
}

/* ===============================
   WITHDRAWAL FORM — FINAL (FIXED)
================================ */

.uug-withdraw-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
}

/* Label */
.uug-withdraw-label {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

/* Input — FULL WIDTH, STABLE */
.uug-withdraw-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 20px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Prevent layout shift on validation */
.uug-withdraw-input:focus,
.uug-withdraw-input:invalid {
    outline: none;
    box-shadow: none;
}

/* Button */
.uug-withdraw-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 18px;
}

.uug-withdraw-btn:hover {
    opacity: 0.85;
}

/* Messages */
.uug-success {
    color: #0a7a2d;
    font-weight: 600;
    margin-top: 8px;
}

.uug-error {
    color: #b00020;
    font-weight: 600;
    margin-top: 8px;
}



/* Withdrawal limits text */
.uug-withdraw-limits {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;      /* bold */
    color: #444;           /* readable */
}
