#container_event {
    top: 0;
    left: 0;
    background-image: url("../img/bg.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.social_button {
    display: inline-block;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 16px;
}

#facebook {
    background-image: url("../img/facebook_sprite.png");
    background-repeat: no-repeat;
    background-position: 0px center;
    left: 57px;
}

#facebook:hover {
    background-position: center;
}

#facebook:active {
    background-position: -36px center;
}

#youtube {
    background-image: url("../img/youtube_sprite.png");
    background-repeat: no-repeat;
    background-position: 0px center;
    left: 79px;
}

#youtube:hover {
    background-position: center;
}

#youtube:active {
    background-position: -36px center;
}

#news_board {
    width: 288px;
    height: 280px;
    position: absolute;
    top: 15px;
    left: 118px;
}

#news_board_title {
    font-size: 14px;
    color: #810e0b;
    font-family: Arial, sans-serif;
    font-weight: 600;
}

#news_board_container {
    position: absolute;
    top: 19px;
    width: 288px;
    height: 244px;
    font-size: 11px;
    font-family: Arial, sans-serif;
    text-align: left;
    overflow-y: scroll;
    color: #402306;
}

.news_board_category_date {
    padding: 7px 10px 0px 11px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news_board_content {
    padding: 2px 10px 4px 11px;
    line-height: 1.6;
}

#news_board_readmore a {
    position: absolute;
    bottom: 0px;
    font-size: 11px;
    color: #810e0b;
    font-family: Arial, sans-serif;
    font-weight: 600;
    text-align: center;
    width: 288px;
}

#calendar_board {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    gap: 50px;
}

#upcoming_events {
    font-family: Arial, sans-serif;
    font-weight: 600;
    text-align: center;
    font-size: 12px;
    width: 152px;
    color: #3f2307;
}

#server_selected {
    width: 152px;
    height: 10px;
    font-family: Arial, sans-serif;
    font-size: 11px;
    text-align: center;
    color: #6e4b07;
}

#server_to_left {
    left: 15px;
    top: 13px;
    width: 7px;
    height: 8px;
    background-image: url("../img/server_selection_arrows.png");
    background-repeat: no-repeat;
    background-position: 0px center;
    cursor: hand;
}

#server_to_right {
    right: 15px;
    top: 13px;
    width: 7px;
    height: 8px;
    background-image: url("../img/server_selection_arrows.png");
    background-repeat: no-repeat;
    background-position: -7px center;
    cursor: hand;
}

#calendar {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    width: 100%;
    height: 100%
}

#calendar_month {
    top: 5px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #88271d;
    text-align: center;
    width: 100px;
}

#calendar_day_displayed {
    top: 16px;
    font-family: Arial, sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #88271d;
    text-align: center;
    width: 100px;
}

#timezone_changer {
    position: absolute;
    top: 94px;
    left: 12px;
    background-image: url("../img/timezone_sprite.png");
    background-position: 0px center;
    height: 12px;
    width: 14px;
    background-repeat: no-repeat;
}

#timezone_changer:hover {
    background-position: center;
}

#timezone_changer:active {
    background-position: 14px center;
}

#event_time {
    color: #3c2a22;
    top: 57px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    width: 90px;
    left: 5px;
}

#event_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    height: 300px;
    justify-content: center;
}

.eventItem {
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #3c2a22;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.eventItem.active {
    font-weight: 600;
    color: #7b1325;
}

.eventName {
    font-weight: normal;
}

.eventTime {
    font-weight: 600;
}

#month_days {
    font-family: Arial, sans-serif;
    font-size: 20px;
    color: #3c2a22;
    left: 11px;
    top: 157px;
    width: 100%;
}

#month_days tbody {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

#month_days tr {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 50px;
    justify-content: center;
}

#month_days td {
    width: 24px;
    height: 24px;
    text-align: center;
}

#weekdays_title {
    color: #070504;
    font-weight: bold;
    font-family: "Times New Roman", Georgia, Serif;
}

.day_isselectable {
    cursor: pointer;
    cursor: hand;
}

.day_islower {
    opacity: 0.4;
    filter: alpha(opacity=40);
}

.day_isselected {
    background-image: url("../img/selected_day_circle.png") !important;
    height: 24px !important;
    width: 24px !important;
    color: white !important;
}

.day_haseventscheduled {
    background-image: url("../img/day_hasevent.png?v=1.1");
    height: 16px;
    width: 16px;
}

#timezone_changer.hover {
    background-position: center !important;
}

#timezone_changer.active {
    background-position: -28px center;
}

#youtube.hover {
    background-position: center;
}

#youtube.active {
    background-position: -36px center;
}

#facebook.hover {
    background-position: center;
}

#facebook.active {
    background-position: -36px center;
}