/* Fix for education date colors */

/* Education date styling with neo-brutalism */
.neo-education-date {
    background-color: #FF6B8B !important; /* Pink background */
    color: #000 !important; /* Black text */
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 0;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    top: -15px;
    right: 10px;
    border: 2px solid #000;
}

/* Dark mode */
.dark .neo-education-date {
    background-color: #FF6B8B !important; /* Keep pink background */
    color: #000 !important; /* Keep black text */
    box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.7);
}

/* Experience date styling with neo-brutalism */
.neo-experience-date {
    background-color: #A2D2FF !important; /* Blue background */
    color: #000 !important; /* Black text */
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 0;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
    z-index: 2;
    position: relative;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #000;
}

/* Dark mode */
.dark .neo-experience-date {
    background-color: #A2D2FF !important; /* Keep blue background */
    color: #000 !important; /* Keep black text */
    box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.7);
}
