/* Month header */
.month {
    padding: 0px 15px;
	padding-top: 5px;
    background: #777;
    text-align: center;
}

/* Month list */
.month ul {
    margin: 0;
    padding: 0;
}

.month ul li {
    color: white;
    font-size: 100%;
    text-transform: uppercase;
    letter-spacing: 3px;
	padding-bottom: 10px;
}

/* Previous button inside month header */
.month .prev {
    float: left;
    padding-top: 10px;
	cursor: pointer;
}

/* Next button */
.month .next {
    float: right;
    padding-top: 10px;
	cursor: pointer;
}

.month ul li.prev:hover,
.month ul li.next:hover {
	color: black;
}

/* Weekdays (Mon-Sun) */
.weekdays {
    margin: 0;
    padding: 10px 0;
	padding-bottom: 0px;
    background-color:#ddd;
	font-size: 12;
}

.weekdays li {
    display: inline-block;
    width: 13%;
    color: #666;
    text-align: center;
	padding-bottom: 10px;
}

/* Days (1-31) */
.days {
    padding: 10px 0;
    background: #eee;
    margin: 0;
	font-size: 12;
	padding-bottom: 0;
}

.days li {
    list-style-type: none;
    display: inline-block;
    width: 13%;
    text-align: center;
    margin-bottom: 0px;
    font-size: 12px;
    color: #777;
    cursor: pointer;
	padding-bottom: 10px;
    #padding: 10px 0; /* Szövegközépítés vízszintesen és függőlegesen */
    box-sizing: border-box;
}

.days li:hover {
    text-decoration: underline;
    color: darkblue;
}

.days li.out {
    color: #c4c4c4;
    cursor: default;
    text-decoration: none; /* Ensure .out elements have no text-decoration */
}

.days li.out:hover {
    text-decoration: none;
    color: #c4c4c4; /* Ensure .out elements retain their color on hover */
}

/* Highlight the "current" day */
.days li .activeDay {
    padding: 5px;
    background: #1abc9c;
	color: white;
	font-weight: bold;
}

.days li.active {
    color: white;
    font-weight: bold;
}

.days li .active:hover {
	color: darkblue;
}

.days li span{
    #display: inline-block;
    width: 100%;
    height: 100%;
    border: 2px solid transparent; /* Alapértelmezett keret */
}

.days li span.activeBorder {
	padding: 5px;
    border: 2px solid red; /* Bekeretelés aktív napon */
}

.days li.marked::after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background-color: red;
    border-radius: 50%;
    position: absolute;
    #bottom: 5px; /* A span alá pozicionáljuk */
    #left: 50%;
    transform: translateX(-50%);
	margin-left: 15px;
	margin-top: -2px;
}