/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

.search {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

.search input[type=text] {
    font-size: xx-large;
    border: 1px solid darkgrey;
    border-radius: 0.5rem 0 0rem 0.5rem;
    padding: 0.5rem;
}

.search input[type=submit] {
    background-color: darkgrey; /* Green */
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: xx-large;
    padding: 0.5rem;
    border: 1px solid darkgrey;
    border-radius: 0 0.5rem 0.5rem 0;
}
