/* Extracted from views/public_templates.xml so the browser can cache
   it. Edit here, not in the template. */

                            /* Odoo's own chrome only. This used to start with
                               a bare `header, footer, nav`, which with
                               !important would hide any such element the page
                               added of its own. */
                            #wrapwrap > header, #wrapwrap > footer,
                            #wrapwrap > nav, #top, #bottom,
                            .o_header, .o_footer, .o_main_navbar,
                            .navbar, .o_navbar,
                            .o_footer_copyright, .s_footer,
                            [data-name="Header"], [data-name="Footer"] {
                                display: none !important;
                            }
                            
                            * {
                                margin: 0;
                                padding: 0;
                                box-sizing: border-box;
                            }
                            
                            body {
                                font-family: 'DM Sans', sans-serif;
                                background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
                                min-height: 100vh;
                                color: #1a1a2e;
                            }
                            
                            .check-status-page {
                                min-height: 100vh;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                padding: 40px 20px;
                            }
                            
                            .status-container {
                                width: 100%;
                                max-width: 500px;
                            }
                            
                            .status-card {
                                background: #ffffff;
                                border: 1px solid #e0e2e8;
                                border-radius: 24px;
                                padding: 40px;
                                box-shadow: 0 25px 80px rgba(0,0,0,0.1);
                            }
                            
                            .status-logo {
                                text-align: center;
                                margin-bottom: 30px;
                            }
                            
                            .status-logo .logo-icon {
                                font-size: 60px;
                                display: block;
                            }
                            
                            .status-logo .logo-text {
                                display: block;
                                font-size: 28px;
                                font-weight: 700;
                                color: #c41e3a;
                                margin-top: 10px;
                                letter-spacing: 2px;
                            }
                            
                            .status-title {
                                text-align: center;
                                color: #1a1a2e;
                                font-size: 22px;
                                font-weight: 600;
                                margin-bottom: 8px;
                            }
                            
                            .status-subtitle {
                                text-align: center;
                                color: #888;
                                font-size: 14px;
                                margin-bottom: 30px;
                                line-height: 1.6;
                            }
                            
                            .search-form {
                                display: flex;
                                gap: 10px;
                                margin-bottom: 25px;
                            }
                            
                            .search-input {
                                flex: 1;
                                padding: 16px 20px;
                                border: 2px solid #e0e2e8;
                                border-radius: 12px;
                                background: rgba(0,0,0,0.04);
                                color: #1a1a2e;
                                /* 16px, not 15. Safari on iOS zooms the page in when it
                                   focuses a field whose text is under 16px, and does not
                                   zoom back out, leaving the member on a page wider than
                                   their screen, scrolling sideways. This is the box people
                                   use to check whether their application went through. */
                                font-size: 16px;
                                font-family: inherit;
                                transition: all 0.3s ease;
                            }
                            
                            .search-input:focus {
                                outline: none;
                                border-color: #c41e3a;
                                background: #e8eaee;
                            }
                            
                            .search-input::placeholder {
                                color: #666;
                            }
                            
                            .search-btn {
                                padding: 16px 28px;
                                background: linear-gradient(135deg, #c41e3a 0%, #8b1428 100%);
                                border: none;
                                border-radius: 12px;
                                color: #fff;
                                font-weight: 600;
                                font-size: 15px;
                                cursor: pointer;
                                transition: all 0.3s ease;
                                font-family: inherit;
                            }
                            
                            .search-btn:hover {
                                transform: translateY(-2px);
                                box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
                            }
                            
                            .result-card {
                                background: rgba(0,0,0,0.025);
                                border: 1px solid #e8eaee;
                                border-radius: 16px;
                                padding: 25px;
                                margin-top: 20px;
                            }
                            
                            .result-card.found {
                                border-color: rgba(0, 200, 83, 0.4);
                                background: rgba(0, 200, 83, 0.05);
                            }
                            
                            .result-card.not-found {
                                border-color: rgba(255, 107, 107, 0.4);
                                background: rgba(255, 107, 107, 0.05);
                            }
                            
                            .member-info-row {
                                display: flex;
                                justify-content: space-between;
                                align-items: center;
                                padding: 14px 0;
                                border-bottom: 1px solid rgba(0,0,0,0.04);
                            }
                            
                            .member-info-row:last-child {
                                border-bottom: none;
                            }
                            
                            .info-label {
                                color: #888;
                                font-size: 13px;
                            }
                            
                            .info-value {
                                color: #1a1a2e;
                                font-weight: 600;
                                font-size: 14px;
                            }
                            
                            .status-badge {
                                display: inline-block;
                                padding: 6px 16px;
                                border-radius: 20px;
                                font-size: 12px;
                                font-weight: 600;
                            }
                            
                            .status-pending {
                                background: rgba(255, 193, 7, 0.2);
                                color: #8a6d00;
                            }

                            .status-approved {
                                background: rgba(0, 200, 83, 0.2);
                                color: #00733b;
                            }

                            .status-rejected {
                                background: rgba(255, 107, 107, 0.2);
                                color: #c0392b;
                            }
                            
                            .nav-buttons {
                                display: flex;
                                gap: 12px;
                                margin-top: 25px;
                                flex-wrap: wrap;
                            }
                            
                            .nav-buttons a {
                                flex: 1;
                                min-width: 140px;
                                padding: 14px 20px;
                                border-radius: 12px;
                                text-decoration: none;
                                font-weight: 600;
                                font-size: 14px;
                                text-align: center;
                                transition: all 0.3s ease;
                            }
                            
                            .btn-primary-custom {
                                background: linear-gradient(135deg, #c41e3a 0%, #8b1428 100%);
                                color: #fff;
                            }
                            
                            .btn-primary-custom:hover {
                                transform: translateY(-2px);
                                box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
                                color: #fff;
                            }
                            
                            .btn-secondary-custom {
                                background: rgba(0,0,0,0.04);
                                border: 2px solid #c0c2c8;
                                color: #1a1a2e;
                            }

                            .btn-secondary-custom:hover {
                                background: #e0e2e8;
                                border-color: #c0c2c8;
                                color: #1a1a2e;
                            }
                            
                            .footer-info {
                                text-align: center;
                                margin-top: 30px;
                                color: #555;
                                font-size: 12px;
                            }
                            
                            .no-search-hint {
                                text-align: center;
                                color: #666;
                                padding: 30px 20px;
                            }
                            
                            .no-search-hint .icon {
                                font-size: 50px;
                                margin-bottom: 15px;
                            }
                            
                            @media (max-width: 480px) {
                                .status-card {
                                    padding: 30px 25px;
                                }
                                .search-form {
                                    flex-direction: column;
                                }
                                .nav-buttons {
                                    flex-direction: column;
                                }
                                .nav-buttons a {
                                    min-width: 100%;
                                }
                            }
                        
