body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #FFFFFF;
    color: #333;
}

.container {
    text-align: center;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
}

.google-logo {
    width: 400px;
    margin-bottom: 40px;
    width:50%;
}

.search-box {
    display: flex;
    border: 1px solid #dfe1e5;
    border-radius: 28px;
    padding: 5px;
    transition: box-shadow 0.3s ease;
    align-items: center;
    margin-bottom: 30px;
}

.search-box:focus-within {
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
    border-color: #4285f4;
}

.search-box input[type="text"] {
    flex-grow: 1;
    border: none;
    padding: 12px 18px;
    font-size: 16px;
    outline: none;
    background: transparent;
}

.search-box button {
    background-color: #4285f4;
    color: white;
    border: none;
    border-radius: 24px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.search-box button:hover {
    background-color: #3367d6;
    transform: translateY(-1px);
}

.search-box button i {
    margin-right: 5px;
    font-size: 18px;
}

.search-box button:has(i) {
    padding: 12px 18px;
}

/* --- Perubahan pada output-section --- */
.output-section {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
    padding: 20px;
    border-radius: 8px;
    /* Ubah text-align menjadi center */
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-style: italic;

    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.output-section.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.output-section p {
    /* Hapus margin default paragraf jika menyebabkan masalah penataan */
    margin: 0;
    color: #333;
    font-style: normal;
}

.output-section p strong {
    color: #000;
}

.output-section p[style*="color: red"] {
    font-weight: bold;
    font-style: normal;
}

.output-section p[style*="color: orange"] {
    font-weight: bold;
    font-style: normal;
}