
:root {
    --primary: #0070f3;
    --primary-foreground: #ffffff;
    --secondary: #f5f5f5;
    --secondary-foreground: #111;
    --background: #ffffff;
    --foreground: #111;
    --card: #ffffff;
    --card-foreground: #111;
    --border: #e5e5e5;
    --input: #f5f5f5;
    --ring: #0070f3;
    --radius: 0.5rem;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

body {
    background-color: var(--background);
    color: var(--foreground);
}

.card {
    background: var(--card);
    border-radius: var(--radius);
    border-color: var(--border);
}

.profile-image-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid var(--primary);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-card {
    background: var(--secondary);
    padding: 1rem;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.info-value {
    font-weight: 600;
    color: var(--foreground);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.verification-card {
    background: var(--secondary);
    padding: 1rem;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
}

.verification-icon {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
}

.verification-card.verified .status {
    color: #10b981;
    font-weight: 600;
}

.modal-content {
    border-radius: var(--radius);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background-color: var(--primary);
    filter: brightness(90%);
}

@media (max-width: 768px) {
    .profile-image-wrapper {
        width: 150px;
        height: 150px;
    }

    .verification-card {
        margin-bottom: 1rem;
    }
}


