body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8fafc;
    text-decoration: none; /* Remove underline generally */
}

.container {
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 260px;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 24px 0 0 0;
    border-right: 1px solid #e0e0e0;
}

.logo {
    font-size: 1.3em;
    padding: 0 24px 32px 24px;
    font-weight: bold;
    color: #15803d;
}

.logo span {
    font-size: 0.8em;
    color: #525252;
}

nav ul {
    list-style: none;
    padding: 0 24px;
}

nav li {
    padding: 14px 12px;
    cursor: pointer;
    border-radius: 8px;
    margin-bottom: 6px;
    text-decoration: none; /* Remove underline */
}

/* If nav items contain links */
nav li a {
    text-decoration: none;
    color: inherit;
}

.crisis-support {
    margin: 44px 24px 0px 24px;
    background: #fef2f2;
    color: #dc2626;
    padding: 12px;
    border-radius: 10px;
    font-size: .97em;
}

.profile {
    margin: auto 0 12px 24px;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}

.profile img {
    border-radius: 50%;
    width: 40px;
    margin-bottom: 8px;
}

.profile span {
    font-weight: 500;
}

.profile small {
    color: #888;
    font-size: .83em;
}

.dashboard {
    flex: 1;
    padding: 36px 42px;
}

header {
    margin-bottom: 32px;
}

header h1 {
    font-size: 1.7em;
    margin: 0 0 10px 0;
}

.header-options {
    display: flex;
    gap: 24px;
}

.header-options span {
    background: #f1f5f9;
    border-radius: 7px;
    padding: 7px 18px;
    font-size: .97em;
    margin-right: 10px;
}

.main-grid, .secondary-grid {
    display: flex;
    gap: 18px;
}

.main-grid {
    margin-bottom: 28px;
}

.card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 8px rgba(70,130,180,0.06);
    padding: 20px 28px;
    min-width: 220px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.card h2 {
    font-size: 1.2em;
    margin: 0 0 8px 0;
}

.card button {
    margin-top: 10px;
    background: #16a34a;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 8px 18px;
    cursor: pointer;
    font-size: .99em;
}

.chat-support { border-left: 4px solid #38bdf8; }
.appointment { border-left: 4px solid #22c55e; }
.resources { border-left: 4px solid #a78bfa; }
.peer-support { border-left: 4px solid #f87171; }

/* Remove underline from all anchor tags just in case */
a {
    text-decoration: none;
    color: inherit;
}
