/* --- Global & Buttons --- */
.onestation-logged-in-menu span.avatar_name {
    color: #000;
    display: inline-block;
    padding-right: 10px;
}

.onestation-logged-in-menu {
    display: block !important;
}

.onestation-logged-in-menu .avatar {
    display: none;
}

.onestation-logged-in-menu .onestation-logout {
    margin-left: 10px;
}
.onestation-btn, .onestation-btn-small {
    background: #1e73be;
    color: #fff !important;
    padding: 8px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    font-size: 14px;
    text-transform: capitalize;
    text-align:center;
}
button.onestation-tab-btn:focus {
    color: #fff;
}
.onestation-btn:hover, .onestation-btn-small:hover { background: #0056b3; }
/* .onestation-btn-small { padding: 5px 10px; font-size: 14px; border-radius: 8px;
     text-decoration: none; background: #1e73be; color: #fff !important; border-radius: 4px; } */

/* --- Auth Popup Styles --- */
.onestation-popup-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); z-index: 99999;
    display: flex; justify-content: center; align-items: center;
}
.onestation-popup-content {
    background: #fff; padding: 30px; border-radius: 8px;
    width: 100%; max-width: 450px; position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.onestation-close-popup {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}
.onestation-popup-tabs {
    display: flex; margin-bottom: 20px; border-bottom: 2px solid #eee;
}
.onestation-tab-btn {
    flex: 1; background: none; border: none; padding: 10px;
    font-size: 16px; cursor: pointer; color: #666;
}
.onestation-tab-btn.active {
    color: #1e73be; border-bottom: 2px solid #1e73be; font-weight: bold;
}
#onestation-auth-popup form input, #onestation-auth-popup form select {
   width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}
#onestation-auth-popup form select{
 height: 40px;
}
.onestation-tab-btn.active:hover {
    color: #fff !important;
}

#onestation-login-tab h3, #onestation-register-tab h3 {
    text-align: center;
    font-size: 20px !important;
    padding-bottom: 20px;
}

#onestation-login-form label, #onestation-register-form label {
    text-align: left;
    font-size: 16px;
    font-weight: normal;
}

#onestation-login-form label input, #onestation-register-form label input {
    width: auto;
}
a.onestation-forgot-link {
    font-size: 16px;
}
.onestation-msg span {
    font-size: 12px;
    font-weight: normal;
} 

/* --- Dashboard Styles --- */
.onestation-dashboard-wrapper {
    display: flex; flex-wrap: wrap; gap: 30px; margin-top: 20px;
}
.onestation-dashboard-sidebar {
    flex: 1; min-width: 250px; background: #f9f9f9;
    padding: 20px; border-radius: 8px; border: 1px solid #eee;
}
.onestation-dashboard-content { flex: 3; min-width: 300px; }
.onestation-user-info { text-align: center; margin-bottom: 20px; }
.onestation-user-info img { border-radius: 50%; margin-bottom: 10px; }
.onestation-badge { background: #e0f2fe; color: #0284c7; padding: 3px 8px; border-radius: 12px; font-size: 12px; }
.onestation-dashboard-nav { list-style: none; padding: 0; margin: 0; }
.onestation-dashboard-nav li { margin-bottom: 10px; }
.onestation-dashboard-nav a {
    display: block; padding: 10px; background: #fff;
    text-decoration: none; color: #333; border-radius: 4px; border: 1px solid #eee;
}
.onestation-dashboard-nav a.active, .onestation-dashboard-nav a:hover {
    background: #1e73be; color: #fff;
}