.main-container {
    display: flex;
    flex-direction: row;
}

.workshop-events {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-evenly;
}

.events {
    display: flex;
    width: 95%;
    height: max-content;
    flex-shrink: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    min-width: 300px;
    margin-right: auto;
}

.events:hover{
    transform: scale(1.009);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 767px) {
    .events {
        width: 95%;
    }
}

.left {
    width: 15%;
    background: #002D72;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.month {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date {
    font-size: 36px;
    font-weight: bold;
    margin-top: 5px;
}

.right {
    width: 70%;
    flex: 1;
    padding: 10px 25px 10px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title {
    font-size: 16px;
    font-weight: 600;
    color: #004c9b;
    line-height: 1.4;
    margin: 10px 0px 5px 0px !important;

} 

.time_campus {
    font-size: 14px;
    color: #333333;
    display: flex;
    align-items: center;
    font-style: italic;
    font-weight: 600;
}

.time_campus::before {
    margin-right: 6px;
}

.workshop-events-wrapper {
    width: 100%;
}

.hidden-card {
    display: none !important;
}

.more-workshops-wrapper {
    display: flex;
    justify-content: center;
    padding: 0px 40px 0px 0px;
}

.more-workshops-btn {
    width: 40%;
    background-color: #002D72;
    color: white;
    border: none;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
    margin-left: auto;
}

.more-workshops-btn:hover {
    background-color: #003d99;
}

.more-workshops-btn:active {
    transform: scale(0.98);
}

.main-container {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.workshop-events-wrapper {
    flex: 0 0 75%;
}

.filter-sidebar {
    flex: 0 0 25%;
    position: sticky;
    top: 20px;
}

.filter-wrapper {
    background: #f9f9f9;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #000000;
}

.campus_options {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.campus_options div {
    display: flex;
    gap: 8px;
}

.campus_options input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #002D72; /* modern browser support */
    cursor: pointer;
}

.campus_options label {
    font-size: 14px;
    color: #333333;
    cursor: pointer;
    font-weight: 500;

}

.campus_options .from,
.campus_options .to {
    display: flex;
    flex-direction: column;
}

.campus_options input[type="text"] {
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    justify-content: center;
}

.campus_options input[type="text"]:focus {
    outline: none;
    border-color: #002D72;
    box-shadow: 0 0 0 2px rgba(0, 45, 114, 0.2);
}

.filter-group:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
}

.filter-wrapper:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
}

.filter-title{
    margin : 0px !important;
}

.filter-buttons {
    background-color: #002D72;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 10px;
}

.filter-buttons:hover {
    background-color: #004c9b;
}

.date-range input{
    margin-bottom: 10px;
    border-color: #a7a7a7;
    border-radius: 5px;
    background: #ffffff !important;
    width: 100%;
}

.filter-group h4{
    margin-bottom: 20px;
}

.applied-filters {
    padding: 10px;
    margin-bottom: 10px;
}

.applied-filters .filter-chip {
    padding: 8px;
    background: rgba(255, 220, 0, 0.4);
    border-radius: 10px;
    margin-right: 5px;
}

.applied-filters .filter-chip:hover {
    background-color: rgba(255, 220, 0, 0.7);;
}

.applied-filters .filter-chip .remove-filter{
    text-decoration: none ;
}