

/*Ending*/
.header-wrapper {
  background-color: silver;
  width:100%;
}

.view-title-with-image {
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  height: 200px;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.view-title-with-image:before {
  content: "";
  flex: 1;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.customlayout{
    background-color:#cfc00;
    margin:5px;
    padding:6px;
    border-top:10px;
    border-right:7px;
}

     /* Custom styles for the Drupal block view */
.custom-block {
  background-color: #fffff;
  padding: 5px;
  border-top: 2px solid #8c8c8c;
  border-right: 2px solid #8c8c8c;
  margin-bottom: 7px;
  margin-top:8px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
  text-align:center;
  border-radius:10px;
  width:auto;
}

.custom-block h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.custom-block img {
  max-width: 100%;
  height: auto;
  margin-bottom: 5px;
}

.custom-block p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

custom-block h3{
    color:#337ab7;
}

.custom-block a {
  color: #337ab7;
  text-decoration: none;
}

.custom-block a:hover {
  text-decoration: underline;
}

.custom-block .tags {
  margin-top: 10px;
}

.custom-block .tags a {
  background-color: #f1f1f1;
  color: #333;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.custom-block .tags a:hover {
  background-color: #337ab7;
  color: #fff;
}
footer .menu {
  display: flex;
  justify-content: space-between;
}

footer .menu li {
  margin: 0 10px;
}
textarea{
width:100%;
height:12em;
margin:10px;
}

h1 {
  text-align: center;
}
textarea, input {
  display: block;
  margin: 10px auto;
  width: 90%;
  font-size: 18px;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
}

label {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
}

textarea, select, input[type="number"] {
  display: block;
  font-size: 16px;
  padding: 5px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  
}

textarea:focus, select:focus, input[type="number"]:focus {
  outline: none;
  border-color: #66afe9;
  box-shadow: 0 0 5px #66afe9;
}

button {
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 12px;
  cursor: pointer;
  margin-right: 10px;
  border: 1px;
  background-color: blue;
  color: #fff;
  min-width:120px;
}

button:hover {
  background-color: #23527c;
}

#output{
  font-size: 16px;
  margin-bottom: 10px;
  border-radius: 5px;
  width: 100%;
  height: 150px;
  resize: none;
}

#error-message {
  color: red;
  font-weight: bold;
  margin-bottom: 10px;
}

select{ min-width:120px;
    
}
input{
    min-width:120px;
}
progress {
    width:100%;
}
      

        select {
            display: block;
            margin: 20px auto;
    
            font-size: 16px;
            border-radius: 5px;
            width: 200px;
        }

        #table-container {
            margin-top: 20px;
            text-align: center;
        }

        table {
            margin: 0 auto;
            border-collapse: collapse;
            width: 80%;
            max-width: 600px;
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        th, td {
            padding: 10px;
            border: 1px solid #ddd;
            text-align: center;
        }

        th {
            background-color: #4CAF50;
            color: #fff;
        }

        tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        tr:hover {
            background-color: #f1f1f1;
        }