﻿body {
    font-family: Arial;
    margin: 0;
    background: white;
    color: #222;
}

.home-container {
    text-align: center;
    margin-top: 120px;
}

.logo {
    width: 500px;
    margin-bottom: 25px;
}

.search-box {
    width: 600px;
    padding: 12px;
    font-size: 18px;
    border: 1px solid #ccc;
}

.search-button {
    margin-left: 12px;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: bold;
    color: white;
    background: #4285f4;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.search-button:hover {
    background: #2f6fd6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.top-bar {
    padding: 20px;
    display: flex;
    align-items: center;
}

.top-logo {
    width: 180px;
    vertical-align: middle;
    margin-right: 20px;
}

.top-search-box {
    width: 600px;
    padding: 13px 18px;
    font-size: 16px;
    border: 1px solid #d0d7de;
    border-radius: 28px;
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.top-search-box:focus {
    border-color: #4285f4;
    box-shadow: 0 3px 12px rgba(66, 133, 244, 0.25);
}

.results-container {
    margin-left: 180px;
    margin-top: 30px;
    width: 700px;
}

.result {
    margin-bottom: 35px;
}

.result-url {
    color: green;
    font-size: 14px;
    margin-bottom: 3px;
}

.result-title {
    color: #1a0dab;
    font-size: 22px;
    text-decoration: none;
}

    .result-title:hover {
        text-decoration: underline;
    }

.result-snippet {
    margin-top: 5px;
    color: #545454;
    font-size: 15px;
    line-height: 1.5;
}

b {
    color: black;
}
