/* General Body Styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    background-color: #ffffff;
}

/* Logo Styling */
.logo {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.logo img, .logo svg {
    width: 250px;
    height: auto;
    display: block;
}

/* Search Bar Styling */
.search-bar {
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

input[type="text"] {
    width: 100%;
    padding: 15px 20px;
    font-size: 18px;
    border: 1px solid #dcdcdc;
    border-radius: 50px;
    outline: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: 0.2s ease-in-out;
}

input[type="text"]:focus {
    border: 1px solid #4285f4;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
}

button {
    margin-top: 10px;
    background-color: #4285f4;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

button:hover {
    background-color: #357ae8;
}

/* Results Container Styling */
.results-container {
    margin-top: 20px;
    max-width: 600px;
    width: 90%;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.result-left h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.result-left p {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
}

.result-right {
    font-size: 18px;
    color: #333;
    text-align: right;
}

.result-right p {
    margin: 0;
    font-weight: bold;
}

/* No Results Styling */
.no-results {
    margin-top: 20px;
    max-width: 600px;
    width: 90%;
    background: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 15px;
    color: #856404;
    border-radius: 8px;
}

/* Footer Styling */
.footer {
    margin-top: 20px;
    text-align: center;
    width: 100%;
    color: #777;
    font-size: 14px;
}

.footer a {
    text-decoration: none;
    color: #4285f4;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }

    .logo img, .logo svg {
        width: auto;
        height: auto;
        max-width: 80%;
        margin: 0 auto;
    }

    input[type="text"] {
        font-size: 16px;
        padding: 12px 15px;
    }

    button {
        font-size: 16px;
        padding: 8px 15px;
    }

    .result-item h3 {
        font-size: 16px;
    }

    .result-item p {
        font-size: 13px;
    }

    .footer {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    input[type="text"] {
        font-size: 14px;
        padding: 10px 12px;
    }

    button {
        font-size: 14px;
        padding: 6px 10px;
    }

    .result-item h3 {
        font-size: 14px;
    }

    .result-item p {
        font-size: 12px;
    }
}
