@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto, Helvetica Neue, Arial, sans-serif;
}

body {
  display: flex;
  background-color: #fff;
  color: #555;
  line-height: normal;
  font-size: 13px;
  flex-direction: column;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header styles */
header {
  padding: 15px 20px;
  box-shadow: 0 0.1875rem 0.125rem hsla(0, 0%, 80%, 0.1607843137);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .groups .search-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  justify-content: space-between;
}

header .search-wrapper form {
  width: 100%;
}

header .search-wrapper .search-bar {
  width: 100%;
}

header .groups {
  display: flex;
  justify-content: center;
  width: 100%;
}

header .groups > .search-container {
  flex: 1 1 100%;
}

.logo {
  flex: 0 0 30%;
  max-width: 250px;
  margin-right: 24px;
}

.result-link {
  color: #7f7f7f;
  text-decoration: none;
  font-style: normal;
  font-size: 12px;
}

.result-link:focus,
.result-link:hover {
  text-decoration: underline;
}

.logo-image {
  width: 250px;
  height: 40px;
}

.search-wrapper {
  flex: 1 1 70%;
  max-width: 680px;
}

.result-description {
  color: #545454;
  font-size: 13px;
  line-height: 1.4;
}

.search-bar {
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 24px;
  padding: 8px 15px;
  background-color: #fff;
  box-shadow: 0 2px 5px 1px rgba(64, 60, 67, 0.16);
}

.search-bar-group {
  width: 100%;
}

.search-bar.group {
  display: flex;
  justify-content: center;
  background: none;
  box-shadow: none;
  border: none;
  padding: 0;
}

.search-bar.group form {
  width: 100%;
  max-width: 680px;
}

.search-bar.group .search-bar {
  width: 100%;
}

.search-bar input[type=search],
.search-bar input[type=text] {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
  padding: 0 10px 0 0;
  height: 32px;
  line-height: 32px;
}

.search-bar .clear-button,
.search-bar .search-button {
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  padding: 0 5px;
  display: flex;
  align-items: center;
  height: 32px;
}

.search-bar .search-button svg {
  stroke: #3b82f6;
}

.search-bar .clear-button:focus,
.search-bar .search-button:focus,
.search-bar input:focus {
  outline: none;
  box-shadow: none;
}

/* Main content styles */
.resultsFor {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  padding: 30px 0 50px;
  color: #333;
}

.mainline {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Web Results heading */
.results-heading {
  font-size: 12px;
  color: #777;
  margin: 25px 0 15px 0;
  font-weight: normal;
}

.group {
  margin-bottom: 10px;
}

article {
  padding: 6px 0 12px 0;
}

.result {
  color: #7f7f7f;
  text-decoration: none;
  display: block;
}

/* Web result title */
.result-title {
  font-size: 13px;
  margin: 0 0 2px 0;
  font-weight: 600;
  line-height: 1.3;
  color: #7f7f7f;
}

.result-title a {
  color: inherit;
  text-decoration: none;
}

/* Web result URL - green color */
.result-url {
  font-size: 12px;
  display: block;
  margin-bottom: 2px;
  font-style: normal;
  color: #7f7f7f;
}

/* Web result description - smaller and gray */
.result-description {
  color: #545454;
  font-size: 13px;
  line-height: 1.4;
}

.ads.group .ads-heading {
  display: none;
}

.web-results .results {
  list-style: none;
  margin: 0;
  padding: 0;
}

.web-results .result-item {
  margin: 0;
}

.footer-nav {
  margin-top: 30px;
}

.related-searches .results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 0;
  margin: 0;
}

.sidebar .related-searches .results {
  grid-template-columns: repeat(1, 1fr);
}

.related-search-link {
  color: #1a0dab;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  /*padding: 6px 0;*/
  line-height: 1.3;
}

.related-search-link:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("https://afs.googleusercontent.com/ad_icons/standard/publisher_icon_image/search.svg?c=%231a0dab");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  margin-right: 8px;
}

.related-search-link:hover {
  text-decoration: underline;
}

/* Pagination styling */
.pagination {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pagination .page-number,
.pagination .page-nav {
  color: #1a0dab;
  text-decoration: none;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.pagination .page-number.current {
  background-color: #1a0dab;
  color: white;
  border-color: #1a0dab;
}

.pagination .page-number:hover:not(.current),
.pagination .page-nav:hover {
  background-color: #f8f9fa;
  border-color: #dadce0;
}

/* Footer styles */
footer {
  margin-top: 40px;
  padding: 20px;
  border-top: 1px solid #e5e5e5;
  text-align: center;
}
footer .footer-brand {
  display: none;
}

.footer-list {
  margin-bottom: 10px;
}

.links {
  display: flex;
  justify-content: center;
  list-style: none;
}

.links li {
  margin: 0 10px;
}

.links a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
}

.copyright {
  color: #777;
  font-size: 12px;
}

.links li::after {
  content: "•";
  margin-left: 15px;
  color: #999;
}

.links li:last-child::after {
  content: "";
}

@media (max-width: 768px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  }
  body {
    background-color: #f8f9fa;
    color: #202124;
    font-size: 14px;
    line-height: 1.6;
  }
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 16px 18px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e3eb;
    box-shadow: none;
  }
  .search-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-width: 560px;
    margin: 0 auto;
  }
  .logo {
    margin-bottom: 4px;
    text-align: center;
  }
  .logo-image {
    height: 32px;
  }
  .search-wrapper {
    width: 100%;
  }
  .search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    border-radius: 28px;
    padding: 8px 14px;
    background-color: #ffffff;
    border: 1px solid #dadce0;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.2);
  }
  #search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 4px 0;
    outline: none;
    font-size: 16px;
    color: #202124;
  }
  .search-bar input::placeholder {
    color: #80868b;
  }
  .clear-button,
  .search-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #5f6368;
  }
  .search-button svg {
    stroke: #1a73e8;
  }
  .divider {
    display: none;
  }
  .resultsFor {
    display: block;
    font-weight: 500;
    color: #202124;
    text-align: center;
    padding: 10px 16px 6px;
  }
  main {
    padding: 0 0 32px;
  }
  .mainline {
    padding: 0 16px;
  }
  .mainline .group {
    margin-bottom: 18px;
  }
  .mainline .group:last-child {
    margin-bottom: 0;
  }
  .mainline .group:not(.pagination):not(.search-bar) {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 16px 18px;
  }
  .ads.group {
    padding: 12px 14px;
  }
  .ads.group .ads-heading {
    display: block;
    font-size: 12px;
    color: #9aa0a6;
    font-weight: 400;
    margin: 0.5em 0;
  }
  .ads.group .ads-container {
    overflow: hidden;
  }
  .results-heading {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #5f6368;
    margin: 12px 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e3eb;
  }
  .web-results {
    background: transparent;
    padding: 0;
    box-shadow: none;
  }
  .results {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  article.result {
    padding: 0;
  }
  .result-title {
    font-size: 16px;
    line-height: 1.35;
    color: #7f7f7f;
    margin: 0 0 4px;
  }
  .result-title a {
    color: inherit;
  }
  .result-url {
    font-size: 13px;
    color: #4d5156;
    margin-bottom: 4px;
  }
  .result-description {
    font-size: 14px;
    color: #4d5156;
    line-height: 1.6;
  }
  .related-searches {
    margin-top: 24px;
  }
  .related-searches .results {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .related-search-link {
    font-size: 15px;
    color: #1967d2;
  }
  .related-search-link:before {
    filter: invert(29%) sepia(96%) saturate(1448%) hue-rotate(194deg) brightness(91%) contrast(95%);
  }
  .pagination-container .footer-mainline {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 16px;
  }
  .footer-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 0;
  }
  .pagination-desktop {
    display: none;
  }
  .pagination-mobile {
    display: flex;
    justify-content: center;
    gap: 14px;
  }
  .pagination-btn {
    min-width: 96px;
    text-align: center;
    font-size: 14px;
    border-radius: 8px;
    border: none;
    padding: 12px 18px;
    font-weight: 600;
    text-decoration: none;
    background: #e8f0fe;
    color: #1967d2;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.15);
  }
  .pagination-btn.prev {
    background: #dff3dc;
    color: #137333;
  }
  .pagination-btn.next {
    background: #34a853;
    color: #ffffff;
  }
  .pagination-btn.pagination__num--disabled {
    opacity: 0.65;
    pointer-events: none;
  }
  footer {
    padding: 22px 16px 32px;
    margin-top: 24px;
    background: transparent;
  }
  .footer {
    align-items: center;
  }
  .footer-list {
    margin-bottom: 16px;
  }
  .links {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }
  .links li::after {
    content: "";
  }
  .links li a {
    text-decoration: none;
    font-size: 13px;
    color: #5f6368;
  }
  .copyright {
    font-size: 12px;
    text-align: center;
    color: #80868b;
  }
  .aylf .related-searches .results {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px 0;
  }
}
@media (max-width: 768px) {
  body {
    background-color: #181818;
    color: #e8eaed;
  }
  header {
    background-color: transparent;
    box-shadow: none;
    border-bottom: 1px solid #2a2a2a;
  }
  .search-bar {
    background-color: #202124;
    border: 1px solid #3c4043;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  }
  #search-input {
    color: #e8eaed;
  }
  .search-bar input::placeholder {
    color: #9aa0a6;
  }
  .clear-button {
    color: #545454;
  }
  .divider {
    background-color: #333;
  }
  .search-button {
    color: #545454;
  }
  .search-button svg {
    stroke: #8ab4f8;
  }
  .search-bar input {
    color: #eee !important;
  }
  .resultsFor {
    color: #e8eaed;
  }
  .results-heading {
    color: #fff;
    border-bottom: none;
    margin: 12px 0;
  }
  .mainline .group:not(.pagination):not(.search-bar) {
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .web-results {
    background: transparent;
    box-shadow: none;
    border: none;
  }
  .result-title {
    color: #7f7f7f;
  }
  .result-url {
    color: #7f7f7f;
  }
  .result-description {
    color: #545454;
  }
  .related-search-link {
    color: #7f7f7f;
  }
  .related-search-link:before {
    filter: invert(69%) sepia(11%) saturate(1340%) hue-rotate(177deg) brightness(92%) contrast(88%);
  }
  .pagination-btn {
    background: #2d2f31;
    color: #8ab4f8;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  }
  .pagination-container .footer-mainline {
    background: #202124;
    border: 1px solid #3c4043;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  }
  .pagination-btn.prev {
    background: #1e3a29;
    color: #a8d5b0;
  }
  .pagination-btn.next {
    background: #0b8043;
    color: #e1f5e9;
  }
  .pagination-btn.pagination__num--disabled {
    opacity: 0.45;
  }
  footer {
    border-top: 1px solid #333;
    background: #181818;
    color: #7f7f7f;
  }
  .links li a {
    color: #bbb;
  }
  .copyright {
    color: #545454;
  }
}
/* ===== BASE STYLES ===== */

/*# sourceMappingURL=default-dark.css.map */
