@charset "UTF-8";

@import url(https://fonts.googleapis.com/css?family=Exo:100,200,400);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:700,400,300);


html,body {
  min-height:100%;
  max-height:100%;
  margin:0;
  padding:0;
}

*,*:before,*:after {
  box-sizing:border-box;
}

.calendar-container {
	z-index:5;
	margin: auto;
}

.container {
    display: flex;
}

#map {
    height: 80vh;
    width: 80vw;
    margin-top: 5px;
}


.form-container {
    background-color: #c8d0d4;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    display: inline;
}

.form-container-2 {
    background-color: #c8d0d4;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.date-navigation {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
}

.arrow-button {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 10px;
    margin: 0 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.arrow-button:hover {
    background-color: #2563eb;
    transform: scale(1.1);
}

.arrow-button:focus {
    outline: none;
}

#date {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}


.submit-button {
    margin-top: 1rem;
    padding: 0.5rem;
    background-color: #3b82f6;
    color: white;
    font-weight: bold;
    text-align: center;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.submit-button:hover {
    background-color: #2563eb;
}

.chart-wrapper {
    position: relative;
    width: 80%;
    margin: 0 auto;
}


.print-button {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 999;
    
    appearance: auto;
	border-width: 1px;
	background-color: buttonface;
	padding-inline: 6px;
	border-color: black;
	border-radius: 0.5rem;
	font-size: small;	
    
}

.print-button:hover {
	background-color: #D9D9D9;
}

.print-button:active {
	background-color: buttonface;
}

.map-title {
    font-size: 18px;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent background */
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.formResult {
    color: red;
}
