body {
    font-family: -apple-system, BlinkMacSystemFont, Roboto, Segoe UI,
        Helvetica Neue, Helvetica, Arial, sans-serif;
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    line-height: 1.5;
    height: 80%;
}

input, textarea, select {
	box-sizing: border-box;
	width: 200px;
	height: initial;
	padding: 8px 5px;
	border: 1px solid #9a9a9a;
	border-radius: 4px;
}

.vertical-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width:100%;
}

.horizontal-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

select {
	display: initial;
	height: 30px;
	padding: 2px 5px;
}

button, input[type=submit], input[type=button] {
	padding: 8px 0px;
	font-size: 1em;
	cursor: pointer;
	border-radius: 25px;
	color: #000000;
	background-color: #ffffff;
	transition: background-color 0.3s; 
	transition: color 0.3s; 
	box-shadow: 5px 5px 2.5px 0px rgba(0,0,0,0.75);
	font-weight: bold;
}

button:disabled {
	opacity: 0.5;
	cursor:not-allowed;
}

button:hover {
	background-color: rgba(143, 143, 143);
	color: white;
}

label {
	font-weight: bold;
}

.error {
	font-weight: bold;
	color: #FF0000;
	display: none;
}

.title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -0.1vh;
}

header {
	display:flex;
	background-color: #18995d; 
	color: #fff; 
	justify-content: space-between; 
	align-items: center; 
	height: 60px; 
	width: 100%;
	box-shadow: 0px 5px 2.5px 0px rgba(0,0,0,0.75);
}

::placeholder {
	color: #bdbfc4;
}

.logo-image {
    width:20vh;
    height:auto;
    margin-left: 4vh;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;

}

th, td {
	border: 1px solid #ddd;
	padding: 8px;
	text-align: center;
	width:20%;
}

th {
	background-color: #f2f2f2;
}

.header-table {
	margin-top: 0.5vh;
	margin: 0;
    padding: 0;
	border-collapse: collapse;
}

.header-table th {
	width:20%;
	padding: 0px;
}

.header-table tr {
	box-shadow: 0px 5px 2.5px 0px rgba(0,0,0,0.75);;
}

.header-table button {
	width:100%;
	height:auto;
	border-radius: 0;
	box-shadow: none;
	border: 1px solid #18995d;
	background-color: #18995d;
	color: white;
	transition: color 0.3s, background-color 0.3s; 
}

.header-table button:hover {
	background-color: white;
	color: black;
}

.title-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    max-width: 17vh;
    margin: 0 auto;
    margin-top: -6vh;
}

.logo-name {
    width:20vh;
    height:auto;
}

#mainElements {
	display: none;
}

ul.custom-list {
    list-style-type: none; 
    padding: 0; 
}

ul.custom-list li {
    margin-left: 20px;
    background: url('../res/img/cross.png') no-repeat left center; 
    padding-left: 30px; 
    background-size: 20px; 
}


/* Define the keyframes for the spinning animation */
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Apply the spinning animation to the element with the 'spinner' class */
.progressSpinner {
	border: 8px solid #f3f3f3; /* Light gray border */
	border-top: 8px solid #3498db; /* Blue border for the top side */
	border-radius: 50%; /* Make it a circle */
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite; /* Apply the 'spin' animation */
}
  

@media all and (max-width: 780px) {
    .phppot-container {
        width: auto;
    }
}

@media all and (max-width: 400px) {
    .phppot-container {
        padding: 0px 20px;
    }
    .tile-container {
        width: auto;
    }
    input, textarea, select {
        width: 100%;
    }
}