/* Enhanced styles for better readability and navigation */

/* Improve text contrast */
body {
    color: #333; /* Darker text color for better contrast */
}

.tool-description {
    color: #444; /* Darker color for better readability */
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Change link colors from purple to a more consistent shade */
a {
    color: #5d4037; /* Brown shade consistent with site theme */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #8d6e63;
    text-decoration: underline;
}

a:visited {
    color: #5d4037; /* Keep consistent color even for visited links */
}

/* Enhance navigation structure */
.calendar-nav {
    margin: 15px 0;
    position: relative;
}

.calendar-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.calendar-nav li a {
    display: block;
    padding: 10px 15px;
    background-color: #f5f5f5;
    color: #5d4037;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.calendar-nav li a:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

/* Make year navigation buttons larger and more noticeable */
.year-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 20px 0;
}

.year-navigation button {
    background-color: #8d6e63;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.year-navigation button:hover {
    background-color: #6d4c41;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Add breadcrumb navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #8d6e63;
}

.breadcrumb .separator {
    margin: 0 8px;
    color: #ccc;
}

.breadcrumb .current {
    color: #5d4037;
    font-weight: 500;
}

/* Enhance tools navigation */
.tools-navigation {
    margin: 25px 0;
}

.tools-navigation ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.tools-navigation li a {
    display: block;
    padding: 12px 20px;
    background-color: #f5f5f5;
    color: #5d4037;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.tools-navigation li a:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.tools-navigation li a.active {
    background-color: #8d6e63;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .year-navigation button {
        padding: 10px 18px;
        font-size: 1rem;
    }
    
    .tools-navigation li a {
        padding: 10px 15px;
        width: 100%;
        text-align: center;
    }
    
    .calendar-nav li a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}