l/*
Theme Name: Sahil Smart Edu Theme
Theme URI: https://yourwebsite.com/
Author: Sahil
Author URI: https://yourwebsite.com/
Description: Custom app-style layout theme with fixed footer navigation.
Version: 1.0
Text Domain: sahil-smart
*/

body {
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
}

#sahil-app-wrapper {
    font-family: 'Noto Sans Gujarati', sans-serif;
    max-width: 600px;
    margin: 0 auto;
    background-color: #f7f9fc;
    position: relative;
    overflow-x: hidden;
    padding-bottom: 80px; 
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Header */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 90;
}
.menu-icon { font-size: 26px; cursor: pointer; color: #333; }
.app-title { font-size: 18px; font-weight: bold; color: #2c3e50; text-transform: uppercase; }

/* Select Dropdown */
.select-dropdown-container { position: relative; }
.select-btn {
    background: #ffffff; border: 2px solid #2c3e50; padding: 5px 12px;
    border-radius: 20px; font-weight: bold; cursor: pointer; font-size: 12px; transition: 0.3s;
}
.select-btn:hover { background: #2c3e50; color: #fff; }
.dropdown-content {
    display: none; position: absolute; right: 0; top: 38px;
    background-color: #fff; min-width: 120px; box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px; z-index: 100; overflow: hidden;
}
.dropdown-content a {
    color: #333; padding: 10px 15px; text-decoration: none; display: block;
    font-size: 14px; border-bottom: 1px solid #eee;
}
.dropdown-content a:hover { background-color: #f1f1f1; }
.show { display: block; }

/* Breaking News Ticker */
.news-ticker {
    display: flex; background: #e74c3c; color: white; margin: 15px;
    border-radius: 6px; overflow: hidden; align-items: center;
}
.news-label {
    background: #c0392b; padding: 10px 15px; font-weight: bold;
    white-space: nowrap; font-size: 13px; z-index: 2;
}
.news-slide { padding: 0 10px; width: 100%; overflow: hidden; }
.news-slide marquee { font-size: 14px; font-weight: 500; margin-top: 4px; }

/* Slider Banner */
.slider-banner {
    margin: 15px;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    background: transparent;
}
.slider-banner img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Standard Grid */
.std-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 0 15px 15px 15px;
}
.std-card {
    background: #ffffff; text-align: center; padding: 25px 10px; border-radius: 12px;
    font-size: 18px; font-weight: bold; color: #2c3e50;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06); border: 1px solid #f0f0f0; cursor: pointer;
}
.std-card:hover { border-color: #3498db; color: #3498db; }

/* Sidebar Menu */
.side-menu {
    height: 100%; width: 0; position: fixed; z-index: 1000; top: 0; left: 0;
    background-color: #ffffff; overflow-x: hidden; transition: 0.3s;
    box-shadow: 2px 0 15px rgba(0,0,0,0.1); padding-top: 60px;
}
.side-menu a {
    padding: 12px 20px; text-decoration: none; font-size: 15px; color: #333; display: block; font-weight: 500;
}
.side-menu a i { margin-right: 15px; width: 20px; text-align: center; color: #3498db; }
.side-menu .close-btn {
    position: absolute; top: 15px; right: 20px; font-size: 22px; cursor: pointer; color: #e74c3c;
}
.menu-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 999;
}

/* Fixed Bottom Navigation */
.bottom-nav {
    display: flex; justify-content: space-around; align-items: center;
    position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 100%; max-width: 600px; background: #ffffff; padding: 10px 0 6px 0;
    border-top: 1px solid #eef2f5; box-shadow: 0 -4px 10px rgba(0,0,0,0.05); z-index: 100;
}
.nav-item {
    display: flex; flex-direction: column; align-items: center; text-decoration: none;
    color: #27ae60; font-size: 11px; font-weight: 600;
}
.nav-item i { font-size: 18px; margin-bottom: 4px; }