.wpap-dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f9fafb;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.wpap-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 20px;
}

.wpap-header h2 {
    margin: 0;
    color: #111827;
    font-size: 24px;
}

.wpap-user-info {
    color: #6b7280;
    margin-top: 5px;
}

.wpap-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.wpap-stat-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.wpap-stat-box h4 {
    margin: 0 0 10px;
    color: #6b7280;
    font-size: 14px;
    text-transform: uppercase;
}

.wpap-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
}

.wpap-link-generator {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.wpap-input-group {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.wpap-input-group input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    background: #f9fafb;
}

.wpap-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.wpap-btn-primary {
    background: #2563eb;
    color: white;
}

.wpap-btn-primary:hover {
    background: #1d4ed8;
}

.wpap-btn-secondary {
    background: #4b5563;
    color: white;
}

.wpap-btn-secondary:hover {
    background: #374151;
}

.wpap-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.wpap-table th,
.wpap-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.wpap-table th {
    background: #f3f4f6;
    font-weight: 600;
    color: #374151;
}

.wpap-badge {
    padding: 4px 8px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
}

.wpap-badge-paid {
    background: #d1fae5;
    color: #065f46;
}

.wpap-badge-pending {
    background: #fef3c7;
    color: #92400e;
}

.wpap-login-container,
.wpap-application-card {
    max-width: 400px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
}