/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Template: generatepress
Author: Tom Usborne
Author URI: https://generatepress.com/about
Description: GeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 10kb (gzipped) to your page size. We take full advantage of the block editor (Gutenberg), which gives you more control over creating your content. If you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS, and is translated into over 25 languages by our amazing community of users. A few of our many features include 60+ color controls, powerful dynamic typography, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover), and 9 widget areas. Learn more and check out our powerful premium version at https://generatepress.com
Tags: two-columns,three-columns,one-column,right-sidebar,left-sidebar,footer-widgets,blog,e-commerce,flexible-header,full-width-template,buddypress,custom-header,custom-background,custom-menu,custom-colors,sticky-post,threaded-comments,translation-ready,rtl-language-support,featured-images,theme-options
Version: 3.6.1.1770569205
Updated: 2026-02-08 16:46:45

*/

:root { --sumup-blue: #0052d6; --slate: #34495e; --light-stripe: #f8f9fa; }

#primary { 
    background: #fffff;
    padding: 0;
    min-height: 80vh;
    font-family: 'Segoe UI', sans-serif;
}

#main { max-width: 1400px; margin: 0 auto; padding: 10px; box-sizing: border-box; }

/* Base Header Styling */
.portal-header {
    background: #fff;
    border-bottom: 2px solid #e1e4e8;
    padding: 15px 30px;
}
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { 
    font-weight: 400;
    font-size: 1.2rem;
    color: #34495e;
    letter-spacing: 1px;
}
.site-name { font-weight: 800; text-transform: uppercase; }
.portal-text { color: #0052d6; font-weight: 700; text-transform: uppercase; }

.status-live { color: #22c55e; }
.status-unconfirmed { color: #c53030; font-weight: bold; }
/* The Dot */
.green-dot {
    background-color: #22c55e; /* Bright Green */
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    animation: blink 1.5s infinite; /* Blinking speed */
}

/* The Blinking Animation */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

@media (max-width: 600px) {
    .site-name { width: 100%; display: block; }
    .portal-text { width: 100%; display: block; }
}

/* School Exit Button */
.exit-btn {
    background: #e74c3c; /* Red for clear exit */
    color: white;
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8em;
}

/* Admin Nav Buttons */
.admin-nav a {
    text-decoration: none;
    color: #7f8c8d;
    padding: 8px 15px;
    font-size: 0.85em;
    font-weight: 600;
}
.admin-nav a.active {
    color: #0052d6;
    border-bottom: 2px solid #0052d6;
}

/* Context/Explainer Box */
.fair-context-block {
    display: flex;
    gap: 16px;
    background: #f5f8fd;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 20px;
    margin: 24px 0;
}

.fair-context-icon { color: #446ea3; /* matches your blue */ font-size: 22px; line-height: 1.2; margin-top: 2px; font-family: FontAwesome; }
.fair-context-content { width: 100%; }
.fair-context-content strong { display: block; font-size: 1em; margin-bottom: 4px; font-weight: 600; }
.fair-context-content p { margin: 0 0 8px 0; color: #475569; font-size: 0.9em; }
.fair-context-link { font-weight: 600; color: #2563eb; text-decoration: none; }
.fair-context-link:hover { text-decoration: underline; }

/* Professional Table Styling */
.table-section-head { color: var(--slate); font-size: 1.2em; margin: 30px 0 15px; font-weight: 700; display: flex; align-items: center; }
.table-section-head span { background: var(--sumup-blue); color: white; padding: 2px 8px; border-radius: 4px; font-size: 0.7em; margin-left: 10px; }

table.data-table { 
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
    font-size: 15px;
}

.data-table tr.header { background-color: #34495e !important; color: #ffffff; text-align: left;} /* Dark Slate Header */
.data-table th { padding: 10px; }
.data-table td { padding: 10px; border: none; }

/* Stripe Colors: White and light gray */
tr:nth-child(odd) { background-color: #ffffff; }
tr:nth-child(even) { background-color: #eeeeee; }

.btn-view { background: var(--sumup-blue); color: white !important; padding: 6px 16px; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 1em; transition: opacity 0.2s; }
.btn-view:hover { opacity: 0.8; }

/* Solid Style Buttons (Consistent Design) */
.btn-solid {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
    font-size: 0.9em;
    background: #34495e; color: white !important; margin: 0 auto;
}
.btn-solid:hover { opacity: 0.9; color: white; }
