/**
 * @copyright 2025 USTP
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
 *
 * @author: Fabian Gabler <fabian.gabler@ustp.at>
 */

.datepickerControl .navbutton>i.fas.fa-chevron-right,
.datepickerControl .navbutton>i.fas.fa-chevron-left {
	display: inline;
}

.datepickerControl {
	background-color: var(--color-surface-50);
	color: var(--color-on-surface-50);
	padding: var(--p-700);
	border-radius: .125rem;
	box-shadow: 0 4px 6px 0 rgba(0, 0, 0, .2), 0 10px 15px 0 rgba(0, 0, 0, .1), 0 15px 25px 0 rgba(0, 0, 0, .1);
}

.datepickerControl .dayLabel {
	background-color: var(--color-surface-200);
	color: var(--color-on-surface-200);
}

.monthLabel td {
	font-weight: bold;
}

.current {
	background-color: var(--color-primary-500);
	color: var(--color-on-primary-500);
	border-radius: 99px;
}

.datepickerControl .day,
.datepickerControl .navbutton {
	text-align: center;
}

.datepickerControl .day:hover,
.datepickerControl .navbutton:hover {
	cursor: pointer;
	background-color: var(--color-primary-300);
	color: var(--color-on-primary-300);
	border-radius: 99px;
}

.datepickerControl tr td {
	padding: var(--p-500);
}

.datepickerControl tr .dayothermonth {
	background-color: var(--color-surface-500);
	color: var(--color-on-surface-500);
	text-align: center;
}

.datepickerControl tr td,
.datepickerControl tr {
	height: 10px !important;
	font-size: 1rem;
	line-height: 1.5rem;
	border: 0 !important;
	text-align: center;
}

.datepickerControl tr {
	padding: 0px 6px;
}