/* General Styles */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
}

/* Search Container */
.search-container {
    margin: 50px 0;
}

.result {
    margin-bottom: 10px;
}

.title-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-icon {
    width: 24px;
    height: 24px;
}

h1 {
    font-size: 36px;
    font-weight: bold;
    color: #4285F4;
}

/* Search Bar */
input {
    width: 60%;
    max-width: 600px;
    padding: 12px 15px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 25px;
    outline: none;
    transition: box-shadow 0.2s;
}

input:focus {
    box-shadow: 0 0 8px rgba(66, 133, 244, 0.5);
}

/* Results container */
#results {
    max-width: 800px;
    margin: 20px auto;
    text-align: left;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Individual result */
.result {
    margin: 15px 0;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.result:last-child {
    border-bottom: none;
}

/* Result links */
.result a {
    font-size: 18px;
    color: #1a0dab;
    text-decoration: none;
    font-weight: bold;
}

.result a:hover {
    text-decoration: underline;
}

/* Desc */
.result p {
    color: #4d5156;
    font-size: 14px;
}

/* Pagination */
#pagination {
    margin-top: 20px;
}

.page-button {
    display: inline-block;
    margin: 5px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.page-button:hover {
    background: #e0e0e0;
}

.page-button.active {
    background: #4285F4;
    color: white;
    font-weight: bold;
}

/* General Button */
button {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
}

/* Primary Button */
.primary-button {
    background: #4285F4;
    color: white;
}

.primary-button:hover {
    background: #357ae8;
    box-shadow: 0 4px 8px rgba(66, 133, 244, 0.3);
}

/* Secondary Buttons */
.secondary-button {
    background: #ddd;
    color: black;
}

.secondary-button:hover {
    background: #ccc;
}

.main {
    text-align: center;
}
/* Footer sector */
html, body {
    height: 100%;
    margin: 0;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

footer {
    background-color: #AFAFAF;
    color: #FEFEFE;
    text-align: center;
    padding: 10px 0;
}