@charset "utf-8";
/* CSS Document */
body {
font-family: Arial, sans-serif; /* Set Arial as the default font for the body */	
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: #f0f0f0;
  height: 100vh;
}

.container {
  width: 100%;
  max-width: 700px;
  min-width: 300px;
  min-height: 100px;
  background-color: #ffcc00; /* Construction yellow */
  padding: 20px;
  box-sizing: border-box;
  margin-top: 10px;
  border-radius: 12px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for better aesthetics */
}

.above-text-container {
  display: flex;
  align-items: center; /* Aligns the image and text vertically */
  gap: 10px; /* Adds space between the elements */
  margin-bottom: 10px; /* Space below the text */
}

.left-image {
  width: 150px;
  height: 62px;
  object-fit: cover;
  border-radius: 8px; /* Optional: adds rounded corners to the image */
}

.top-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px; /* Optional: adds rounded corners to the image */
}

.above-text {
	font-family: Arial;
  margin: 0;
  font-weight: bold;
  font-size: 30px;
  color: #333;
	  margin-left: auto; /* Pushes the text to the right */
  margin-right: 35px; /* Adds 35px of space from the right side */
}

.black-rectangle {
  width: 100%;
   padding: 3px 3px 0 3px;
  background-color: #555555;
  border-radius: 8px; /* Rounded corners for the rectangle */
}

.info-container {
  display: flex;
  flex-direction: column; /* Stacks the rows vertically */
  gap: 10px; /* Space between rows */
  margin-top: 20px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Ensures the items wrap on small screens */
}

.info-header {
  font-weight: bold;
  color: white;
  font-size: 16px;
  width: 100%; /* Makes the header span the full row */
  text-align: center;
}

.info-full {
  font-weight: normal;
  color: white;
  font-size: 14px;
  width: 100%; /* Makes the header span the full row */
  text-align: center;
}

.info-label {
	font-weight: bold;
	text-decoration: underline;
  font-size: 14px;
  color: white;
  flex: 1 1 40%; /* 20% smaller than the 45% for the value */
  word-wrap: break-word; /* Allows wrapping if the content is too long */
  margin: 5px 0;
}

.info-value {
  font-size: 14px;
  color: white;
  flex: 1 1 60%; /* Takes up the remaining 70% */
  word-wrap: break-word; /* Allows wrapping if the content is too long */
  margin: 5px 0;
}


@media (max-width: 600px) {
  .info-row {
    flex-direction: column; /* Stack the label and value vertically on small screens */
  }
}



