/*
 * Galactic Conquest - Classic theme styles
 * Contains all the original inline styles moved to CSS classes
 * Only applies when gc-theme-classic class is present
 */

/* RESPONSIVE MOBILE/DESKTOP DISPLAY RULES - CRITICAL */
html.gc-theme-classic .mobileShow {
    display: none;
}

/* Smartphone Portrait and Landscape */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    html.gc-theme-classic .mobileShow {
        display: inline;
    }
}

html.gc-theme-classic .mobileHide {
    display: inline;
}

/* Smartphone Portrait and Landscape */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    html.gc-theme-classic .mobileHide {
        display: none;
    }
}

/* Blog Section - Classic Layout */
html.gc-theme-classic body #blog {
    margin-top: 1%;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}

/* Banner/Icon Bar - Classic Styles */
html.gc-theme-classic body .icon-bar {
    margin: auto;
    text-align: center;
}

/* Banner Component - Height Control */
html.gc-theme-classic .gc-banner,
html.gc-theme-classic body .icon-bar.gc-banner {
    padding: 5px;
    margin: 0 auto;
    max-height: 120px;
    overflow: hidden;
}

html.gc-theme-classic .gc-banner img,
html.gc-theme-classic body .icon-bar.gc-banner img {
    max-height: 100px;
    width: auto;
    height: auto;
}

html.gc-theme-classic .gc-banner ul,
html.gc-theme-classic body .icon-bar.gc-banner ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

html.gc-theme-classic body .gc-top-nav {
    margin: auto;
    text-align: center;
    margin-top: 0.5%;
    margin-bottom: 0.5%;
}

/* Left Navigation - Classic Styles */
html.gc-theme-classic body .icon-bar2 {
    background-color: rgba(0, 0, 0, 0.99);
}

html.gc-theme-classic body .icon-bar2.gc-left-nav {
    background-color: rgba(0, 0, 0, 0.99);
    text-align: left;
}

/* Main Content Column - Classic Styles */
html.gc-theme-classic body .gc-main-content {
    background-color: rgba(0, 0, 0, 0.99);
    min-height: 77.5vh;
    border: 6px ridge #071A3B;
    padding: 0.25%;
}

/* Card Body Styles - Classic */
html.gc-theme-classic body .card-body {
    padding-left: 1%;
    padding-right: 1%;
}

html.gc-theme-classic body .card-body.text-center {
    text-align: center;
}

html.gc-theme-classic body .card-body.text-right {
    text-align: right;
    padding-right: 1%;
}

/* Button Styles - Classic */
html.gc-theme-classic body .button {
    border: 2px solid darkslategrey;
    border-radius: 8px;
    padding: 2px;
}

/* Chat/Media Styles - Classic */
html.gc-theme-classic body .media {
    text-align: center;
    padding: 4px;
    margin-top: 0;
}

html.gc-theme-classic body .media.text-left {
    text-align: left;
    margin-top: 0.25px;
}

/* Sidebar - Classic Styles */
html.gc-theme-classic body .sidebar-item#SBar {
    background-color: rgba(0, 0, 0, 0.99);
    margin: 0 2%;
    padding: 1%;
    border: 6px ridge #071A3B;
    font-size: 0.9em;
    max-height: 450px;
    text-align: center;
    overflow-y: hidden;
}


/* Tight row spacing - reduces gaps between main columns */
html.gc-theme-classic .gc-tight-row {
    margin-left: -5px;
    margin-right: -5px;
}

html.gc-theme-classic .gc-tight-row > [class*='col-'] {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

/* Classic theme preserves original layout and styling */