/* Import Google Fonts (Roboto) */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* Reset and box-sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
  color: #202124;
  line-height: 1.6;
  padding: 20px;
}

/* Container for centering content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Footer */
header, footer {
  padding: 20px;
  text-align: center;
}

header {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 20px;
}

footer {
  border-top: 1px solid #e0e0e0;
  margin-top: 20px;
}

/* Headings */
h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-align: center;
}

h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

/* Paragraphs */
p {
  font-size: 1em;
  margin-bottom: 15px;
}

/* Links */
a {
  color: #1a0dab;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Forms */
form {
  margin: 20px 0;
}

input[type="text"],
input[type="password"],
input[type="url"],
input[type="file"],
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #dadce0;
  border-radius: 4px;
  font-size: 1em;
}

/* Buttons and Submit Inputs */
input[type="submit"],
button {
  background-color: #1a73e8;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input[type="submit"]:hover,
button:hover {
  background-color: #1558b0;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

table th,
table td {
  padding: 10px;
  border: 1px solid #e0e0e0;
}

table th {
  background-color: #f8f9fa;
  text-align: left;
}

/* Message Styling */
.message {
  color: #34a853;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Google-like Search Results Styling */
.result {
  padding: 15px;
  margin: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.result a.title {
  font-size: 18px;
  font-weight: 500;
  color: #1a0dab;
}

.result a.title:hover {
  text-decoration: underline;
}

.result .url {
  font-size: 14px;
  color: #006621;
}

.result .snippet {
  font-size: 14px;
  color: #545454;
}

/* Thumbnail Styling */
.thumbnail {
  width: 25%;
  height: auto;
  margin: 5px;
  border: 1px solid #dadce0;
  border-radius: 4px;
}

/* Inline Form Styling */
form.inline-form {
  margin: 0;
}

/* Animation Options Styling */
.animation-option {
  display: inline-block;
  text-align: center;
  margin-right: 10px;
}
