/* Base dashboard/page layout shared by every page that isn't purely the
   landing page (style.css) or watchlist-specific (watchlist.css).
   Split into focused stylesheets, imported below, so each concern can be
   edited independently:
     - modals.css  : chart & watchlist dialog/modal styling
     - forms.css   : search bars, buttons, inputs, quote panel
     - pages.css   : Learn More/About/Contact/Company Search content
     - mobile.css  : all max-width:600px responsive overrides (imported last
                     so it can override the rules above it) */
@import url("modals.css");
@import url("forms.css");
@import url("pages.css");
@import url("mobile.css");

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: transparent;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
body.ticker-search-page {
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
body.ticker-search-page > .container {
    margin: 48px auto;
    background: transparent;
    background-size: cover;
    background-position: center;
    color: white;
}
/* Keep dashboard content readable while allowing responsive widths. */
.container {
    max-width: 700px;
    margin: 48px auto 0;
    background: white;
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
}
