* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Verdana, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;


}

.clouds {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .2;
    background-image: url('/images/cloud.svg');
    background-repeat: repeat;
    pointer-events: none;


}

header {
    text-align: center;
    padding: 10px;
    background-color: #007acc;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}


.dogLogo {
    margin-bottom: 10px;
}

#dog {
    width: 100px;
    height: 100px;
}

h1 {
    font-size: 24px;
    
}

label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}


.title {
    font-size: 24px;
}

form {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.weather-card {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
}

.weather-city {
    font-size: 24px;
    margin-bottom: 10px;
}

.weather-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.temperature, .humidity, .wind, .sun-times, .visibility, .precipitation {
    flex: 1;
    margin-bottom: 10px;
}

.weather-form {
    display: flex;
    flex-direction: column;
}


input[type="text"], input[type="date"], input[type="number"], input[type="time"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

button {
    background-color: #007acc;
    color: #fff;
    margin: 10px 0;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #005499;
}
input[type=submit]:hover {
    background-color: #707570;
  }


  h2 {
    text-align: center;
    color: #333;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgb(133, 133, 255);
}

th, td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgb(0, 0, 0);
    border: 0.5px solid rgb(255, 255, 255);
    background-color: rgb(255, 255, 255);
    font-size: 16px;
    color :white;
}

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

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


  @media screen and (max-width: 600px) {
    .col-25, .col-75, input[type=submit] {
      width: 100%;
      margin-top: 0;
    }
  }
