h1,
h3,
h5 {
  font-family: "Courier New", Courier, monospace;
  font-size: 160%;
  text-align: center;
}

body {
  width: 900px;
  margin: auto;
  font-size: 75%;
}

.rahmen {
  border: 2px solid grey;
  margin: 5px;
  padding: 10px;
}

.rahmen2 {
  border: 2px solid rgb(221, 21, 21);
  border-radius: 8px;
  margin: 5px;
  padding: 10px;
}

.color1 {
  background-color: #e6cfcf;
}

.color2 {
  background-color: #d0e60b;
}


.container {
  display: flex;
  height: 350px;
}

.left {
  flex: 1;
}

.right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e6cfcf;
}

form {
  width: 80%;
  max-width: 350px;
}

label {
  vertical-align: middle;
  width: 30%;
  padding: 4px;
  margin-bottom: 10px;
  border: 1px solid #e24040;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
}

input,
select {
  /*display: flex;*/
  display: inline-block;
  width: 100%;
  padding: 4px;
  margin-bottom: 4px;
  border: 1px solid #760fec;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  gap: 30px;
}

.mybutton {
  font: bold 11px Arial;
  text-decoration: none;
  background-color: #ff0000;
  color: #ffffff;
  padding: 2px 6px 2px 6px;
  border-top: 1px solid #cccccc;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  border-left: 1px solid #cccccc;
}

button {
  padding: 5px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.btn-add {
  background: #1a73e8;
  color: white;
}
.btn-calc {
  background: #27ae60;
  color: white;
}
.btn-json {
  background: #4a5568;
  color: white;
}
.btn-import {
  background: #ed8936;
  color: white;
}

#msg {
  background-color: black;
  color: white;
  font-family: "Arial", sans-serif;
  font-size: 14px;
  padding: 15px;
}

.pic1{
	margin-left: 40px;
    max-width: 90%;
    height: auto;
}

.grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); 
  gap: 12px; 
  margin-top: 10px; 
}

#fileInput { 
  display: none; 
}

.results-area { 
  background: #1a202c; 
  color: #e2e8f0; padding: 5px; 
  border-radius: 10px; 
  font-size: 16px;
}

.details { 
  background: #323f58; 
  color: #e2e8f0; padding: 5px; 
  border-radius: 10px; 
  font-size: 18px;
}


.total-sum { 
  font-size: 1.6rem; 
  color: #68d391; 
  font-weight: bold; 
  border-top: 1px solid #4a5568; 
  padding-top: 15px; 
  text-align: right; 
}

.room-entry { 
  border-left: 1px solid #d0e60b;
  transition: transform 0.2s; 
}

.room-entry:hover { 
  transform: scale(1.01); 
}

table,
td,
tr,
th {
  border: 1px solid black;
}
td {
  text-align: center;
}
th {
  background-color: blanchedalmond;
}

footer {
  border-radius: 4px;
  text-align: center;
  padding: 0px;
  background-color: rgb(167, 164, 0);
  color: white;
  font-size: 14px;
}
