#iec-calendar-wrapper {
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
}

#iec-calendar-controls {
    text-align: center;
    margin-bottom: 10px;
}

#iec-calendar-controls button {
    background: #887f60;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}
#iec-calendar-controls button:hover {
    background: #005f8d;
}

#iec-current-month {
    font-size: 0.5rem;
}

.iec-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-top: 10px;
}

.iec-head {
    text-align: center;
    font-weight: bold;
    padding: 5px 0;
}

.iec-cell {
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    background-color: #f1f1f1;
    min-height: 40px;
    position: relative;
}

.iec-cell.has-event::after {
    content: "";
    width: 6px;
    height: 6px;
    background: #ff5e00;
    border-radius: 50%;
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
	
	
}

.iec-cell.empty {
    background: none;
    border: none;
}

.iec-event-list {
    margin-top: 20px;
}

.iec-event-item {
    padding: 10px;
    margin-bottom: 15px;
    background: #fafafa;
    border-left: 5px solid #0073aa;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.iec-event-item a {
    color: #0073aa;
    text-decoration: none;
}

.iec-event-item a:hover {
    text-decoration: underline;
}

.iec-no-event {
    text-align: center;
    color: #777;
    margin-top: 20px;
}

.iec-today {
  border: 2px solid red;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  box-sizing: border-box;
}

.iec-past {
    color: #ccc;
}

#iec-calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}





