
.content_bold {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size:14px;
}
.content {
    font-family: Arial, Helvetica, sans-serif;
    font-size:14px;
}
.title {
    text-align: center;
    border: 1px solid #CCCCCC;
    font-size: 20px;
    width: 14%;
    font-weight: bold;
    background: #FFFFFF;
}
.title-red {
    color: #CC3300;
    text-align: center;
    font-size: 16px;
    width: 14%;

    font-weight: bold;
}
.note {
    border: 1px solid #CCCCCC;
    background-color: #FFFFFF;
    font-size: 14px;
}

.note_add {
    border: 0px solid #CCCCCC;
    background-color: #FFFFFF;
    font-size: 14px;
}
table.header {
    width: 98%;
    margin-right: auto;
    margin-left: auto;
    border-top: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
    border-left: 1px solid #CCCCCC;
    /*background-image: url("images/abg.png"); */
}

table.body {
    width: 98%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: auto;
    border-bottom: 1px solid #CCCCCC;
    border-top: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
    border-left: 1px solid #CCCCCC;
    font-size: 16px;
    /*background-image: url("images/abg.png"); */
}

body {
    font-family: 'Arial';
    font-size: 12px;
}

.colored-box {
    width: 100%;
    height: 30px;
    background-color: #cc3300;
}

.rkpk-select {
    font-size: 16px;
}

.calendar {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.calendar-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px;
    background-color: #f3f3f3;
}
.calendar-header button {
    background-color: transparent;
    border: none;
    font-size: 1em;
    cursor: pointer;
    text-decoration: underline;
    color: blue;
}

.calendar_body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f9;
    justify-content: center;
    align-items: center;
    border: 1px solid #CCCCCC;
}

#month-year {
    font-size: 1.2em;
    font-weight: bold;
}
.calendar-weekdays, .calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}
.calendar-weekdays div, .calendar-dates div {
    text-align: center;
    padding: 3px;
}
.calendar-weekdays {
    background-color: #CCCCCC;
}
.calendar-weekdays div {
    color: #FFFFFF;
    text-align: center;
    font-size: 16px;
    /* width: 14%; */
    border: 1px solid #CCCCCC;
    background: #CC3300;
    font-weight: bold;
}
.calendar-dates div {
    border: 1px solid #CCCCCC;
    /* cursor: pointer; */
    /* width: 14%; */
    height: 170px;
    overflow: auto;
}
.calendar-dates div:hover {
    background-color: #f1f1f1;
}
.calendar-holidays {
    background-color: #f7fa59;
}
.current-date {
    background-color: #69defc;
    /* color: #fa3838; */
    /* border-radius: 50%; */
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.428571429;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.btn-sm {
    border-width: 4px;
    font-size: 13px;
    padding: 4px 9px;
    line-height: 1.39
}
.btn-primary {
    color: #fff;
    background-color: #c41200;
    border-color: #fff;
    border-width: 1px;
    border: solid transparent
}

@media (max-width: 600px) {
    .calendar {
        width: 100%;
        margin: 0 10px;
    }
}