.lyme-dashboard {
    background-color: #f8f9fa;
}

.dashboard-title {
    color: #0D762C;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left;
}

.dashboard-subtitle {
    color: #070707;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 100%;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.dashboard-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    transition: none;
}

.dashboard-card:hover {
    transform: none;
    box-shadow: none;
}

.card-header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
}

.card-icon {
    width: 32px;
    height: 32px;
    margin-right: 0;
    margin-bottom: 0.5rem;
    object-fit: contain;
}

.card-title {
    color: #2d7d32;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    text-align: left;
    border-bottom: 1px solid #AAAAAA;
}

.card-links {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 12px;
    line-height: 2
}

.card-links li:before {
    content: '●';
    position: absolute;
    left: -7px;
    color: #333;
    font-size: 1.2rem;
}

.card-links li {
    position: relative;
    padding-left: 12px;
}

.card-links a {
    color: #070707;
    text-decoration: none;
    font-size: 1.1rem;
    transition: none;
}

.card-links a:hover {
    color: #760D57;
    text-decoration: none;
    font-weight: bold;
}

.highlight-link {
    color: #e91e63 !important;
}

.highlight-link:hover {
    color: #c2185b !important;
}

.lyme-to-bottom {
    position: fixed;
    bottom: 150px;
    right: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s ease;
    border: 5px solid #394E6A;
    width: 120px;
    height: 120px;
    border-radius: 70px;
    align-content: center;
    padding: 7px;
    text-align: center;
    box-shadow: 0px 3px 6px #DCFBDC29;
}

@media (max-width: 1200px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }

    .dashboard-title {
        font-size: 2rem;
    }

    .dashboard-card {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dashboard-title {
        font-size: 1.75rem;
    }

    .dashboard-card {
        padding: 0;
    }
}
