/* style.css — YACE-like blue theme and responsive tweaks */

:root{
  --blue1:#0f4df0;
  --blue2:#1e8bff;
  --accent:#ffffff;
  --muted:#9aa6c7;
}

/* page layout */
body {
  background: linear-gradient(180deg,#eaf2ff,#f7fbff);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  margin:0;
  padding-bottom:40px;
}

/* sidebar toggle button */
.spanFunc{
  font-size:16px;
  cursor:pointer;
  top:70px;
  left:12px;
  position:fixed;
  background-color: aliceblue;
  border:1px solid #ccc;
  border-radius:10px;
  padding:6px 8px;
  z-index:2000;
}

/* sidenav */
.sidenav {
  height:100%;
  width:0;
  position:fixed;
  z-index:1999;
  top:0;
  left:0;
  background-color:#fab60b;
  overflow-x:hidden;
  transition:0.4s;
  padding-top:60px;
}
.sidenav a { padding:8px 8px 8px 32px; text-decoration:none; font-size:20px; color:#333; display:block; transition:0.3s; }
.sidenav a:hover { color:#3c67e4; }
.sidenav .closebtn { position:absolute; top:0; right:12px; font-size:36px; }

/* top header */
.divTop {
  background: linear-gradient(90deg,var(--blue1),var(--blue2));
  color:var(--accent);
  padding:18px 0;
  box-shadow: 0 6px 20px rgba(15,77,240,0.12);
}
.divTopLog { margin-bottom:6px; }
.yace-logo { max-height:56px; display:block; margin:0 auto; }
.yace-text { font-weight:800; font-size:26px; letter-spacing:2px; }

/* search area */
.divSearch .features { margin-top:8px; display:flex; flex-wrap:wrap; gap:6px; }
.feature-chip {
  background: rgba(255,255,255,0.12);
  color:var(--accent);
  border:0;
  padding:6px 10px;
  border-radius:6px;
}


/* main table */
.main-area { margin-top:12px; }
.table-header-blue { background: linear-gradient(180deg,#1e76ff,#3c97ff); color:#fff; }
.table thead th { vertical-align:middle; }
.table tbody td { vertical-align:middle; }

/* smaller screens adjustments */
@media (max-width: 576px) {
  .spanFunc { top:60px; left:8px; }
  .yace-text { font-size:18px; }
  .yace-logo { max-height:44px; }
  .feature-chip { padding:6px 8px; font-size:13px; }
  .table thead th, .table tbody td { font-size:12px; padding:8px; }
}

/* pink button style */
.btn-pink {
  background: #efabb9;
  border-color: #f9b1e4;
  color: #111;
}

/* custom light button */
.btn-light.btn-feature {
  background: #f8f9fa;
  color:#111;
}

/* share box */
.sharebox input.form-control { display:inline-block; vertical-align:middle; margin-left:8px; }

/* Blue table header like YACE style */
.table-header-blue th {
  background-color: #007bff;   /* Bootstrap blue or adjust to your preferred */
  color: #ffffff;              /* White text */
  text-align: center;
  font-weight: 600;
  vertical-align: middle;
}

/* Optional: slightly thicker border for table */
.table.table-bordered {
  border: 1px solid #dee2e6;
}

.table td, .table th {
  border-color: #dee2e6;
}

/* Make table responsive and beautiful on mobile */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.divResult {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
