/*
 * Modern Responsive UI - Randevu Sistemi
 * Gazi Koleji Appointment Booking System
 * Mobile-first, dark/light mode ready
 */

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors - Light Mode */
    --primary: #1a73e8;
    --primary-hover: #1557b0;
    --primary-light: rgba(26, 115, 232, 0.1);
    --secondary: #5f6368;
    --accent: #34a853;

    /* Backgrounds */
    /* Backgrounds */
    --bg-main: #77797c;
    /* Darker AliceBlue per user request */
    --bg-card: rgba(255, 255, 255, 0.95);
    --bg-card: rgba(255, 255, 255, 0.95);
    --bg-input: #ffffff;
    --bg-hover: rgba(26, 115, 232, 0.05);

    /* Text */
    --text-primary: #202124;
    --text-secondary: #5f6368;
    --text-muted: #9aa0a6;
    --text-inverse: #ffffff;

    /* Borders & Shadows */
    --border: rgba(0, 0, 0, 0.1);
    --border-focus: var(--primary);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(26, 115, 232, 0.3);

    /* Spacing & Sizing */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50%;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
}

/* Dark Mode */
[data-theme="dark"] {
    --bg-main: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --bg-card: rgba(45, 45, 55, 0.95);
    --bg-input: #3a3a4a;
    --bg-hover: rgba(26, 115, 232, 0.15);

    --text-primary: #e8eaed;
    --text-secondary: #9aa0a6;
    --text-muted: #6b7280;

    --border: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-main);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== LAYOUT ===== */
#wrap {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 16px;
    background: transparent;
}

#content-wrap {
    background: #ffffff;
    /* White form background as requested */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100% !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

/* ===== HEADER ===== */
#header.legacy-header {
    background: linear-gradient(to right, #2c5eaa, #4a8df1),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 4px) !important;
    border-radius: var(--radius-lg);
    padding: 20px 30px 25px 30px !important;
    /* Reduced bottom padding to remove gap */
    margin: 0 auto 0px auto !important;
    /* Removed bottom gap */
    box-shadow: var(--shadow-md) !important;
    height: auto !important;
    width: 100% !important;
    max-width: 1000px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 0 !important;
    position: relative !important;
    color: #bbb8c0 !important;
    box-sizing: border-box !important;
}

.header-main-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    margin-bottom: 0px;
}

/* New Navigation Bar (Between Header and Content) */
#nav-bar {
    width: 100%;
    max-width: 1000px;
    margin: 5px auto 5px auto;
    /* 5px top margin for tight fit */
    text-align: right;
    padding: 0 10px;
    box-sizing: border-box;
    font-size: 13px;
    color: #ffffff;
}

#nav-bar a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    opacity: 0.9;
}

#nav-bar a:hover {
    color: #ffffff;
    text-decoration: underline;
    opacity: 1;
}

#header .header-logo {
    height: 88px !important;
    /* Increased by 10% */
    width: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.header-titles {
    flex: 1;
    text-align: center;
    padding-right: 80px;
    /* Visually balance the logo width */
}

.header-titles h1 {
    font-size: 31px !important;
    /* Increased by 10% */
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
    padding: 0 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
    line-height: 1.2 !important;
}

.header-titles h2 {
    font-size: 22px !important;
    /* Increased by 10% */
    font-weight: 500 !important;
    color: #ffffff !important;
    margin: 5px 0 0 0 !important;
    padding: 0 !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4) !important;
    opacity: 0.9 !important;
}

/* Mobile Header Optimizations */
@media (max-width: 600px) {
    #header.legacy-header {
        padding: 15px 15px 35px 15px !important;
    }

    .header-main-content {
        gap: 15px !important;
        flex-direction: column !important;
        /* Stack logo and text on mobile */
        text-align: center !important;
    }

    #header .header-logo {
        height: 60px !important;
        /* Smaller logo */
        margin: 0 auto !important;
    }

    .header-titles {
        padding-right: 0 !important;
        /* Remove optical balance padding */
        text-align: center !important;
    }

    .header-titles h1 {
        font-size: 20px !important;
        /* Much smaller mobile title */
        line-height: 1.3 !important;
    }

    .header-titles h2 {
        font-size: 14px !important;
        /* Smaller subtitle */
        margin-top: 5px !important;
    }
}

/* Old header-links styles removed */

#header-links a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    padding: 0 8px !important;
    background: none !important;
    transition: opacity 0.2s ease !important;
}

#header-links a:hover {
    text-decoration: underline !important;
    opacity: 1 !important;
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 2px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    z-index: 1000;
}

.theme-toggle:hover {
    transform: scale(1.1);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

/* ===== FORM STYLES ===== */
#formMain {
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
}

form {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

/* Info Card */
.info-card {
    background: var(--bg-hover);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 32px;
    border-left: 5px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.info-card h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: var(--font-size-lg);
}

.info-card p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.7;
    margin-bottom: 8px;
}

.info-card p:last-child {
    margin-bottom: 0;
}

/* Form Grid Layout */
.form-grid.compact {
    gap: 8px;
    margin-bottom: 12px;
}

.compact-input {
    padding: 10px 14px !important;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin-bottom: 0;
}

/* Form Inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    transition: var(--transition-normal);
    outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

input[type="text"]::placeholder {
    color: var(--text-muted);
}

/* Labels */
label {
    display: block;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: var(--font-size-sm);
}

/* Checkboxes */
input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    accent-color: var(--primary);
    cursor: pointer;
}

.col-8 {
    background: var(--bg-hover);
    padding: 16px;
    border-radius: var(--radius-md);
    margin: 12px 0;
}

.col-8 label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0;
}

.col-8 a {
    color: var(--primary);
    font-weight: 500;
}

/* ===== CALENDAR STYLES ===== */
#tmp {
    width: 100%;
    border: none;
    background: transparent;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

#tmp>tbody>tr {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    justify-content: center;
}

#tmp>tbody>tr>td {
    padding: 0;
    vertical-align: top;
}

#calendar {
    width: 100%;
    min-width: 280px;
    max-width: 320px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--border);
}

/* ===== Redesigned Appointment Layout (Teal Theme) ===== */
:root {
    --primary: #2c5eaa;
    /* Blue matching header */
    --primary-hover: #1e4b8f;
    --primary-light: rgba(44, 94, 170, 0.1);
    --border-light: #ececec;
}

.appointment-header-section {
    text-align: center;
    margin: 5px 0 15px;
}

.appointment-header-section h2 {
    color: #dc3545;
    /* Red warning color per user request */
    font-weight: 600;
    /* Increased weight for visibility */
    font-size: 16px;
    /* Base size */
    line-height: 1.5;
    text-transform: none;
    max-width: 90%;
    /* Better responsiveness */
    margin: 0 auto;
}

@media (max-width: 768px) {
    .appointment-header-section h2 {
        font-size: 14px;
        padding: 0 10px;
    }
}

.appointment-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

/* Calendar Card Styles */
.calendar-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.calendar-nav-header {
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.calendar-title {
    font-size: 18px;
    font-weight: 500;
}

.btn-nav-arrow {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.btn-nav-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Calendar Grid */
.calendar-grid-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #f8f9fa;
    border-bottom: 1px solid var(--border-light);
}

.calendar-day-name {
    padding: 10px 0;
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    text-align: center;
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 10px;
    margin-bottom: 20px;
}

.calendar-day {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    position: relative;
}

.calendar-day.disabled {
    color: #adb5bd;
    /* Darker gray for visibility */
    background-color: #f1f3f5;
    /* Explicit background for disabled */
    cursor: default;
    border-radius: 50%;
    /* Match shape */
    opacity: 0.6;
}

.calendar-day.empty {
    visibility: hidden;
}

/* Explicit Active Day Styling */
.calendar-day a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    /* Strong dark color */
    background-color: #ffffff;
    /* White bg for contrast against page */
    border: 1px solid #dee2e6;
    /* Border to define the touch target */
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.2s;
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.calendar-day a:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
}

.calendar-day a.selected-day {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
    box-shadow: 0 4px 10px rgba(44, 94, 170, 0.4);
}

/* Time Slots Column */
.slots-col {
    background: #fdfdfd;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 20px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.slots-scroll-area {
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
    margin-bottom: 15px;
}

/* Scrollbar styling for time slots */
.slots-scroll-area::-webkit-scrollbar {
    width: 6px;
}

.slots-scroll-area::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.slots-scroll-area::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.slots-scroll-area::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.hours-scroll-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.time-slot-btn {
    background: #fff;
    border: 1px solid #dee2e6;
    color: #495057;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.time-slot-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.time-slot-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.date-feedback-msg {
    text-align: center;
    font-size: 15px;
    color: #6c757d;
    font-weight: 600;
    margin-top: 10px;
}

/* Loading and Error States */
.loading-slots {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #6c757d;
    font-style: italic;
    animation: pulse 1.5s infinite ease-in-out;
}

.error-msg {
    color: #dc3545;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .appointment-grid {
        grid-template-columns: 1fr;
    }

    .appointment-header-section h2 {
        font-size: 18px;
    }

    .calendar-day a {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}

/* ===== BUTTONS ===== */
a.buton,
a.butonDisabled,
.btn-primary {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 12px auto;
    padding: 16px 32px;
    text-align: center;
    font-size: var(--font-size-lg);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    cursor: pointer;
}

a.buton {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: var(--text-inverse);
    box-shadow: var(--shadow-md), 0 4px 15px rgba(26, 115, 232, 0.3);
}

a.buton:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 8px 25px rgba(26, 115, 232, 0.4);
}

a.butonDisabled {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
    box-shadow: none;
    pointer-events: none;
}

/* reCAPTCHA */
.g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 12px 0;
    transform-origin: center;
}

#txtRobotBilgi {
    text-align: center;
    padding: 8px;
    color: var(--primary);
    font-weight: 500;
    font-size: var(--font-size-sm);
}

/* ===== FOOTER ===== */
#footer {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 16px;
    margin: 20px auto 40px auto;
    text-align: center;
    box-shadow: var(--shadow-md);
    width: 100% !important;
    max-width: 1000px !important;
    height: auto;
    box-sizing: border-box !important;
}

#footer p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin: 0;
}

#footer strong {
    color: var(--text-primary);
}

/* ===== SUCCESS PAGE (kayitalindi.php) ===== */
.success-card {
    background: linear-gradient(135deg, rgba(52, 168, 83, 0.1), rgba(26, 115, 232, 0.1));
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    border: 2px solid var(--accent);
}

.success-card h4 {
    font-size: var(--font-size-xl);
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.success-card strong {
    color: var(--primary);
}

.success-card a {
    color: var(--primary);
    font-weight: 600;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet (768px and up) */
@media (min-width: 768px) {
    #wrap {
        padding: 40px 24px;
    }

    #content-wrap {
        padding: 40px;
    }

    #header {
        flex-direction: row;
        justify-content: space-between;
        padding: 24px 32px;
        align-items: center;
    }

    .header-logo {
        max-width: 250px;
        margin-bottom: 0;
    }

    #header-links {
        width: auto;
        justify-content: flex-end;
    }

    #tmp>tbody>tr {
        justify-content: flex-start;
    }

    #calendar {
        min-width: 300px;
    }

    a.buton,
    a.butonDisabled {
        width: auto;
        min-width: 200px;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    #wrap {
        padding: 60px 32px !important;
    }

    #content-wrap {
        padding: 48px !important;
    }

    #header {
        padding: 28px 40px !important;
        min-height: 120px !important;
    }

    #header .header-logo {
        max-width: 300px !important;
    }

    #header #header-links a {
        padding: 10px 20px !important;
    }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    #wrap {
        max-width: 1100px;
    }
}

/* Mobile Portrait (up to 480px) */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    #wrap {
        padding: 12px 8px;
    }

    #content-wrap {
        padding: 20px 16px;
        border-radius: var(--radius-md);
    }

    #header {
        padding: 16px !important;
        border-radius: var(--radius-md) !important;
        gap: 12px !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    #header .header-logo {
        max-width: 240px !important;
    }

    #header #header-links {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        gap: 8px !important;
    }

    #header #header-links p {
        gap: 6px !important;
    }

    #header #header-links a {
        font-size: 11px !important;
        padding: 6px 10px !important;
    }

    .theme-toggle {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    #calendar {
        min-width: 260px;
        max-width: 100%;
    }

    #calendar caption {
        padding: 12px;
        font-size: var(--font-size-base);
    }

    #calendar td a {
        width: 32px;
        height: 32px;
        font-size: var(--font-size-xs);
    }

    a.buton,
    a.butonDisabled {
        padding: 14px 24px;
        font-size: var(--font-size-base);
        max-width: 100%;
    }

    .g-recaptcha {
        transform: scale(0.85);
        margin: 16px 0;
    }

    .success-card {
        padding: 24px 16px;
    }

    .col-8 label {
        font-size: var(--font-size-sm);
    }
}

/* Very Small Screens (up to 360px) */
@media (max-width: 360px) {
    .g-recaptcha {
        transform: scale(0.77);
        transform-origin: center;
    }

    #calendar td a {
        width: 28px;
        height: 28px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

#content-wrap {
    animation: fadeIn 0.6s ease-out;
}

#calendar td a:active {
    animation: pulse 0.2s ease;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 {
    margin-top: 8px;
}

/* ===== FOOTER ===== */
#footer,
#footer p,
#footer strong,
#footer span,
#footer div {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
    font-size: 0.85rem;
    color: #ffffff !important;
    /* Force white text */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    /* Stronger contrast shadow */
}

#footer {
    padding: 10px 0;
    margin: 0 auto 20px auto;
}

#footer p {
    margin: 0;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.hidden {
    display: none;
}

/* Print Styles */
@media print {
    body {
        background: white;
    }

    #wrap {
        max-width: 100%;
        padding: 0;
    }

    .theme-toggle,
    .g-recaptcha,
    #footer {
        display: none;
    }
}