<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  background-color: rgb(231, 233, 236);
  font: 1em sans-serif;
}

#content {
    text-align: center;
    display: grid;
}

#wrapper {
    overflow: hidden;
}

.cat-data {
    width: 50%;
    float: left;
}

.dog-data {
    width: 50%;
    overflow: hidden;
}

.temperament-form {
  padding: 20px 40px;
  font-size: 18px;
  text-align: left;
}

.form-column {
  width: 50%;
  float: left;
}

#cat-furs {
  height: 525px;
}

#dog-furs {
  height: 525px;
}

.title {
  font-size: 18px;
  font-weight: bold;
  color: rgb(24, 34, 51);
  margin: 20px;
}

.intro {
  font-size: 18px;
  color: rgb(24, 34, 51);
  margin: 20px;
}

.conclusion {
  font-size: 14px;
  color: rgb(24, 34, 51);
  margin: 20px 40px;
  text-align: justify;
}

.credit {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 8px;
}

.top-margin {
  margin-top: 16px;
}

div.tooltip {	
  position: absolute;			
  text-align: center;			
  width: 40px;					
  height: 12px;					
  padding: 4px;				
  font: 12px sans-serif;		
  background: lightsteelblue;	
  border: 0px;		
  border-radius: 6px;			
  pointer-events: none;			
}



/* w3school https://www.w3schools.com/howto/howto_js_accordion.asp
/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color:#A6B1BF;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: center;
  border: none;
  outline: none;
  transition: 0.4s;
  border-radius: 6px;
  margin-bottom: 4px;
}
  
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: rgb(136, 145, 156);
}
  
/* Style the accordion panel. Note: hidden by default */
.panel {
  max-height: 0;
  min-width: 800px;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion:after {
  content: '\2212';
  color: #d9ddf3;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}
  
.active:after {
  content: '\002B';
}

.height{
  min-height: 630px;
}

.minheight{
  min-height: 648px;
}

.tempHeight {
  min-height: 352px;
}

hr { 
  width: 100%; 
  margin: 20px auto;
  color: rgb(24, 34, 51);
  background-color: rgb(24, 34, 51);
}

#topNameCount {
  font-size: 18px;
  color: rgb(24, 34, 51);
  margin-bottom: 20px;
}

.breed-results {
  max-height: 150px;
  overflow: scroll;
  background-color: whitesmoke;
  border-radius: 6px;
  padding: 0 18px;
  margin-top: 20px;
}


</pre></body></html>