/* User Dashboard Styles */
.goz-user-dashboard {
    max-width: 1000px;
    margin: 40px auto;
    font-family: inherit;
    color: var(--neutral-800);
    padding: 0 1rem;
}

.goz-dashboard-header {
    margin-bottom: 30px;
}

.goz-dashboard-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-100);
}

.goz-dashboard-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-500);
}

.goz-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .goz-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.goz-dashboard-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid var(--neutral-100);
    overflow: hidden;
    height: 100%;
}

.goz-card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--neutral-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--neutral-50);
}

.goz-card-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.goz-card-body {
    padding: 1.5rem;
}

.goz-data-group {
    margin-bottom: 1.25rem;
}

.goz-data-group:last-child {
    margin-bottom: 0;
}

.goz-data-label {
    display: block;
    font-size: 0.875rem;
    color: var(--neutral-500);
    margin-bottom: 0.25rem;
}

.goz-data-value {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--neutral-800);
}

.goz-empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--neutral-500);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.goz-empty-state p {
    margin-bottom: 1.5rem;
}

.goz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-100);
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
}

.goz-btn:hover {
    filter: brightness(1.1);
    color: white;
}
