/* New Tab Page Styles */
.newtab-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-color: #fff;
    padding-bottom: 10vh;
    /* Visual center adjustment */
}

/* Include font for logo if needed, but standard sans-serif usually works for Google-like */
.google-logo {
    font-family: 'Product Sans', 'Inter', sans-serif;
    font-size: 88px;
    font-weight: 500;
    letter-spacing: -2px;
    margin-bottom: 30px;
    user-select: none;
}

.char-blue {
    color: #4285F4;
}

.char-red {
    color: #EA4335;
}

.char-yellow {
    color: #FBBC05;
}

.char-green {
    color: #34A853;
}

.search-container {
    width: 100%;
    max-width: 580px;
    position: relative;
    padding: 0 20px;
}

.search-bar-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    height: 46px;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    padding: 5px 8px 0 14px;
    box-shadow: none;
    transition: all 0.2s;
}

.search-bar-wrapper:hover {
    background-color: #fff;
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
    border-color: rgba(223, 225, 229, 0);
}

.search-icon-wrapper {
    padding-right: 13px;
    display: flex;
    align-items: center;
    color: #9aa0a6;
}

.search-input {
    flex: 1;
    display: flex;
    height: 100%;
    background-color: transparent;
    border: none;
    margin: 0;
    padding: 0;
    color: rgba(0, 0, 0, 0.87);
    word-wrap: break-word;
    outline: none;
    font-family: arial, sans-serif;
    font-size: 16px;
    margin-top: -5px;
    /* Alignment fix */
}

.mic-icon-wrapper {
    padding: 0 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.search-buttons {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.google-btn {
    background-color: #f8f9fa;
    border: 1px solid #f8f9fa;
    border-radius: 4px;
    color: #3c4043;
    font-family: arial, sans-serif;
    font-size: 14px;
    margin: 11px 4px;
    padding: 0 16px;
    line-height: 27px;
    height: 36px;
    min-width: 54px;
    text-align: center;
    cursor: pointer;
    user-select: none;
}

.google-btn:hover {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
    border: 1px solid #dadce0;
    color: #202124;
}

@media (max-width: 600px) {
    .google-logo {
        font-size: 60px;
    }
}