input[type="checkbox"] {
  margin-right: 0;
  margin-left: 0;
}
input[type="button"] {
  border-radius: 8px;
}
input:focus {
	border-style: solid;
}

a {
  text-decoration: none;
}

body {
	background-color: AliceBlue;
}
body.popup {
	background-color: #fffacd;
}

div.green {
	background-image: url('igreen.jpg');
}

ul#menu li {
	display:inline;
}

h1 h2 h3 {
	font-size:10vw;
}

a.bold {
	text-decoration: none;
	color: #333;
    font-family: Arial, sans-serif;
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 5px;
}

tr.bold {
	border-bottom: 2px solid #ccc;
}

.rounded-border {
  display: inline-block; /* Ensures the border wraps tightly around the text */
  padding: 10px; /* Adds space between the text and the border */
  border: 2px solid #4CAF50; /* Defines the border color and thickness */
  border-radius: 15px; /* Makes the corners rounded */
  background-color: #f9f9f9; /* Optional: Adds a background color */
  font-family: Arial, sans-serif; /* Optional: Sets the font style */
}

#enpromo {
	font-size: medium;	/* to fit each point on one line */
}
#arpromo {
	font-family: Scheherazade, Arial, sans-serif;
	font-size: x-large;
}

@media (max-width: 600px) {
	#enpromo {
		font-size: medium;
	}
}

/* Responsive table */
* {
  box-sizing: border-box;
}

.row {
  margin-left:-5px;
  margin-right:-5px;
  width: 100%;
}
  
.column1 {
  float: left;
  width: 33%;
  padding: 1px;
}

.column2 {
  float: left;
  width: 34%;
  padding: 1px;
}

.column3 {
  float: left;
  width: 33%;
  padding: 1px;
}

/* Clearfix (clear floats) */
.row::after {
  content: "";
  clear: both;
  display: table;
}

.column1 table, .column2 table, .column3 table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 0px solid #ddd;
}

th, td {
  text-align: center;
  /*text-align: left;*/
}

/*tr:nth-child(even) {
  background-color: #f2f2f2;
}*/

/* Responsive layout - makes the columns stack on top of each other instead of next to each other on screens that are smaller than 1024 px */
@media screen and (max-width: 1023px) {
  .column1, .column2, .column3 {
    width: 100%;
  }
}