/* Container & General */
.wea-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    max-width: 450px;
    margin: 40px auto;
    padding: 0 15px;
}

.wea-dashboard-wrapper {
    max-width: 700px;
}

/* Card Style */
.wea-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    border: 1px solid #f0f0f0;
}

/* Typography */
.wea-title {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
}

.wea-text-center { text-align: center; }
.wea-text-muted { color: #666; font-size: 14px; }
.wea-alert { padding: 10px; border-radius: 6px; margin-bottom: 15px; font-size: 14px; text-align: center; }
.wea-alert-error { background: #fee2e2; color: #b91c1c; }
.wea-alert-success { background: #dcfce7; color: #15803d; }

/* Forms & Inputs */
.wea-form-group { margin-bottom: 20px; }
.wea-label { display: block; margin-bottom: 8px; font-weight: 500; color: #444; }
.wea-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box; /* Important for padding */
    transition: border-color 0.3s;
}
.wea-input:focus { border-color: #0073aa; outline: none; }

/* Buttons */
.wea-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    color: #fff;
    display: inline-block;
    text-align: center;
}

.wea-btn-primary { background-color: #0073aa; }
.wea-btn-primary:hover { background-color: #005a87; }

.wea-btn-success { background-color: #10b981; }
.wea-btn-success:hover { background-color: #059669; }

.wea-btn-warning { background-color: #f59e0b; color: #fff; }
.wea-btn-warning:hover { background-color: #d97706; }

.wea-btn-danger { background-color: #ef4444; }
.wea-btn-danger:hover { background-color: #dc2626; }

.wea-btn-block { display: block; width: 100%; margin-bottom: 10px; }

/* Dashboard Specifics */
.wea-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.wea-status { padding: 5px 10px; border-radius: 20px; font-size: 13px; font-weight: bold; }
.status-present { background: #dcfce7; color: #166534; }
.status-late { background: #ffedd5; color: #9a3412; }
.status-absent { background: #fee2e2; color: #991b1b; }

.wea-stats-grid { display: flex; gap: 15px; margin-bottom: 25px; }
.wea-stat-box { flex: 1; background: #f8fafc; padding: 15px; border-radius: 8px; text-align: center; border: 1px solid #e2e8f0; }
.wea-stat-label { font-size: 13px; color: #64748b; display: block; margin-bottom: 5px; }
.wea-stat-value { font-size: 20px; font-weight: 700; color: #0f172a; }

.wea-time-info { margin: 20px 0; font-size: 15px; line-height: 1.6; }
.wea-clock-out-msg { background: #f0fdf4; color: #166534; padding: 15px; border-radius: 8px; text-align: center; }