:root {
    --riget-sage: #98b9ab;
    --riget-light-sage: #c2d6cc;
    --riget-dark: #1a1a1a;
    --riget-grey: #dbdbdb;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background-color: var(--white);
    color: var(--riget-dark);
}

.logo-main {
    width: 120px;
}

nav.secondary-nav {
    background-color: var(--riget-grey);
    padding: 10px 5%;
    display: flex;
    justify-content: flex-end;
    font-size: 0.9rem;
}

.member-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.welcome-header {
    text-align: center;
    margin-bottom: 40px;
}

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

/* Profile Cards */
.riget-card {
    background-color: var(--riget-light-sage);
    border-radius: 40px; /* Matching the ticket card style */
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.profile-pic {
    width: 100px;
    height: 100px;
    background-color: var(--riget-grey);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
}

.stat-item {
    background: rgba(255,255,255,0.4);
    margin: 10px 0;
    padding: 10px;
    border-radius: 15px;
    text-align: center;
}

.btn-select {
    background-color: var(--riget-dark);
    color: var(--white);
    border: none;
    padding: 12px 40px;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 15px;
}

.btn-select:hover {
    opacity: 0.8;
}

.social-icons img {
    width: 30px;
    margin-right: 10px;
}