/*
 Theme Name: Destination Brain v2
 Description: Command-center style theme with large Google-inspired search homepage.
 Version: 2.0
*/

/* RESET */
body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: "Inter", Arial, sans-serif;
}

/* CENTER WRAPPER */
.db-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* SEARCH FORM */
.search-form {
    width: 100%;
    max-width: 780px;
    display: flex;
}

/* GOOGLE-STYLE INPUT */
.search-field {
    flex: 1;
    padding: 22px 30px;
    font-size: 28px;
    border-radius: 50px;
    border: 1px solid #ddd;
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
    outline: none;
    transition: all .2s ease;
}

.search-field:focus {
    border-color: #0a66ff;
    box-shadow: 0 5px 30px rgba(0,102,255,0.25);
}

/* SEARCH BUTTON */
.search-submit {
    margin-left: 12px;
    padding: 20px 34px;
    font-size: 22px;
    border-radius: 50px;
    border: none;
    background: #0a66ff;
    color: white;
    cursor: pointer;
    transition: background .2s ease, box-shadow .2s ease;
}

.search-submit:hover {
    background: #004ed6;
    box-shadow: 0 4px 20px rgba(0,102,255,0.4);
}
/* Fullscreen layout */
body {
    background: #ffffff;
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.db-container {
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search form wrapper */
.search-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Input */
.search-field {
    width: 600px;
    padding: 22px 28px;
    font-size: 24px;
    border: none;
    border-radius: 50px;
    background: #ffffff;
    box-shadow: 0px 4px 25px rgba(0,0,0,0.15);
    outline: none;
}

/* Blue button */
.search-button {
    background: #007bff;
    border: none;
    padding: 18px 38px;
    font-size: 20px;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 4px 20px rgba(0,123,255,0.35);
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.search-button:hover {
    background: #0067d9;
    box-shadow: 0px 4px 25px rgba(0,123,255,0.55);
}
