
/* Goohoo shared styles */
:root{
  --blue:#4285F4; --red:#EA4335; --yellow:#FBBC05; --green:#34A853;
  --bg:#f5f5f5; --text:#111;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  font-family: Arial, sans-serif;
  background-color: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
}
header{
  width:100%;
  background-color: var(--blue);
  padding:10px 0;
  text-align:center;
  position: sticky;
  top:0;
  left:0;
  z-index: 1000;
}
header nav a{
  color:#fff; margin:0 15px; text-decoration:none; font-size:1rem;
}
.logo{
  font-size:6rem; font-weight:bold; margin-top:100px;
  opacity:0; display:flex; justify-content:center;
}
.logo span{ display:inline-block; animation:fadeIn 1s forwards;}
.logo .letter-g{color:var(--blue);}
.logo .letter-o1{color:var(--red); animation-delay:.2s;}
.logo .letter-o2{color:var(--yellow); animation-delay:.4s;}
.logo .letter-h{color:var(--green); animation-delay:.6s;}
.logo .letter-o3{color:var(--yellow); animation-delay:.8s;}
.logo .letter-o4{color:var(--red); animation-delay:1s;}

@keyframes fadeIn{ from{opacity:0; transform: translateY(-20px);} to{opacity:1; transform: translateY(0);} }

.content{ margin-top:20px; display:flex; flex-direction:column; align-items:center; width:100%; }
.search-box{ display:flex; width:100%; max-width:600px; background:#fff; border-radius:50px;
  box-shadow:0 4px 6px rgba(0,0,0,.1); padding:10px 20px; gap:10px;}
.search-box input{ flex:1; border:none; outline:none; padding:10px; font-size:1rem; border-radius:50px;}
.search-box button{ background:var(--blue); border:none; color:#fff; padding:10px 20px; font-size:1rem; border-radius:50px; cursor:pointer; transition:background-color .3s;}
.search-box button:disabled{ background:#ccc; cursor:not-allowed; }

.loader{ border:4px solid #f3f3f3; border-top:4px solid #3498db; border-radius:50%; width:20px; height:20px; animation:spin 1s linear infinite; display:none; margin-left:10px;}
@keyframes spin{ 0%{transform:rotate(0)} 100%{transform:rotate(360deg)} }

/* Cards */
.card{ background:#fff; border-radius:16px; box-shadow:0 8px 18px rgba(0,0,0,.07); padding:20px; }
.grid{ display:grid; grid-template-columns:1fr; gap:16px; width:100%; max-width:1100px; }
@media(min-width:900px){ .grid{ grid-template-columns:1fr 1fr; } }

.badge{ display:inline-block; padding:6px 10px; border-radius:999px; font-size:.85rem; margin:2px; background:#e5e7eb; }
.badge-ok{ background:#c6f6d5; color:#065f46; }
.badge-no{ background:#fee2e2; color:#7f1d1d; }

.list{ list-style:none; padding:0; margin:0; }
.list li{ padding:10px; border-bottom:1px solid #eee; }
.list li:last-child{ border-bottom:0; }

.footer{ margin:30px 0 40px; color:#666; font-size:.9rem; }
.footer a{ color:var(--blue); }
