/* ===== css files 15 ===== */
/* ===== card-table.css ===== */
/* Modified: 2025-09-09 13:32:00 */
        .card-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .card-table th,
        .card-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        .card-table th {
            background: #f8f9fa;
            font-weight: bold;
        }
        
        @media (max-width: 767px) {
            .card-table,
            .card-table thead,
            .card-table tbody,
            .card-table tr,
            .card-table td,
            .card-table th {
                display: block;
            }
            
            .card-table thead {
                display: none;
            }
            
            .card-table tr {
                border: 1px solid #ddd;
                margin-bottom: 15px;
                padding: 15px;
                border-radius: 8px;
                background: white;
                box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            }
            
            .card-table td {
                border: none;
                padding: 8px 0;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            
            .card-table td:before {
                content: attr(data-label);
                font-weight: bold;
                color: #333;
                margin-right: 10px;
            }
        }


/* ===== div.css ===== */
/* Modified: 2025-09-05 14:19:02 */
div.title {
  font-family: 'Lobster Two', cursive ;
  font-size:large;
  font-weight:bold;
  font-style:none;
  text-decoration:none;
}
div.compact {
    p {
        line-height: 0px;
    }
}
div.notice {
    border: 1px solid black;
    padding: 1em;
    

}
div.errDiv {
    color: red;
    margin-left: 1em;

}
div.frame_inner {
    border: 3px solid #ccc;
    text-align: center;
 
}
div.frame_outer {
    float: left;
    border: none;
    padding: 12px;

    margin: 10px;
    text-align: center;
    font-weight: bold;
 
}
div.error {
    background-color: red;
    color: white;
}
div.warning { 
    background-color: orange;
    color: white;
}
div.info { 
    background-color: darkgreen;
    color: white;
}
div.event {
    
    border:1px solid black; 
    background-size: cover;     
    background-repeat:   no-repeat;   
    background-position: center center;
    position:relative;
    width:80%;
    margin-left:10%;
    padding-top:2em;
    padding-bottom:2em;
    text-align:center;
    z-index:100;
 }
div.black{
    color: black;
   
}
div.large{
     font-size: large;
  
}
div.xlarge{
     font-size: x-large;
  
}
div.scroll{
    width: 100%;
    text-align: center;
    height: 400px;
    overflow: auto;
}
/* The div to be centered */
.centered-div {
    width: fit-content;
    padding: 20px;
    background-color: #3498db;
    color: white;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.centered-container {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-color: #f0f0f0;
        }

.centered-div   .help {
    font-size: 12px !Important;
    border: 1px solid white !Important;
    text-align: left !Important;
    padding: 1em !Important;
    margin-top:  1em !Important;
}
.help .ol .li{
    margin-left:1em !Important;
    font-size: 12px !Important;
    text-align: left !Important;
}



.page-container {
    display: flex;
    flex-direction: column;
}

.main-content {
    position: fixed;
    top: 12vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: calc(100vh - 12vh - 8vh); /* Explicit height */
    box-sizing: border-box;
    padding: 10px;
}

.page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%; /* Takes full height of main-content */
    overflow: hidden;
}

/* ===== flexTable.css ===== */
/* Modified: 2025-09-17 14:18:24 */
/* Main flex-table container */
.flex-table {
    display: flex;
    flex-direction: column;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: fit-content;
    min-width: 500px;
    max-width: 90vw;
    height: fit-content; /* Instead of fixed height */
    max-height: 75vh; /* Fallback maximum */
    overflow: hidden;
}
/* Sticky header row */
.flex-table-header {
    display: flex;
    background-color: #f8f9fa;
    border-bottom: 2px solid #ddd;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 10;
    flex-shrink: 0; /* Header should never shrink */
}

/* Scrollable body container */
.flex-table-body {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
/*    overflow-x: hidden;*/
    flex-grow: 1;
    overflow-x: auto;  /* ADD THIS LINE */
    -webkit-overflow-scrolling: touch;  /* ADD THIS LINE */
}
/* Add ONLY these lines to prevent table compression */
.flex-table-row,
.flex-table-header {
    /* your existing styles stay the same... */
    min-width: fit-content;  /* ADD THIS LINE */
}

/* Add ONLY this line to prevent cell compression */
.flex-table-cell {
    /* your existing styles stay the same... */
    flex-shrink: 0;  /* ADD THIS LINE */
}
/* Individual table rows */
.flex-table-row {
    display: flex;
    border-bottom: 1px solid #eee;
    min-height: 48px; /* Minimum row height for touch targets */
    transition: background-color 0.2s ease;
}

.flex-table-row:hover {
    background-color: #f5f5f5;
}

.flex-table-row:last-child {
    border-bottom: none;
}

/* Alternating row colors (optional) */
.flex-table-row:nth-child(even) {
    background-color: #fafafa;
}

.flex-table-row:nth-child(even):hover {
    background-color: #f0f0f0;
}

/* Table cells - base styles */
.flex-table-cell {
    padding: 12px;
    border-right: 1px solid #eee;
    display: flex;
    align-items: center;
    min-width: 0; /* Allows content to shrink and text to wrap/truncate */
    flex: 1; /* Equal distribution by default */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.flex-table-cell:last-child {
    border-right: none;
}

/* Header cells get different styling */
.flex-table-header .flex-table-cell {
    background-color: transparent;
    color: #333;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Cell content alignment options */
.flex-table-cell.text-left {
    justify-content: flex-start;
    text-align: left;
}

.flex-table-cell.text-center {
    justify-content: center;
    text-align: center;
}

.flex-table-cell.text-right {
    justify-content: flex-end;
    text-align: right;
}

/* Cell width control classes */
.flex-table-cell.col-xs {
    flex: 0 0 60px; /* Extra small - for IDs, icons */
}

.flex-table-cell.col-sm {
    flex: 0 0 100px; /* Small - for dates, status */
}

.flex-table-cell.col-md {
    flex: 1; /* Medium - default */
}

.flex-table-cell.col-lg {
    flex: 2; /* Large - for names, descriptions */
}
.flex-table-cell.full {
    flex: 1; /* full width */
}

.flex-table-cell.col-xl {
    flex: 3; /* Extra large - for long content */
}

.flex-table-cell.col-fixed {
    flex: 0 0 auto; /* Fixed width based on content */
}

/* Special cell types */
.flex-table-cell.action-cell {
    flex: 0 0 120px;
    justify-content: center;
    gap: 8px; /* Space between action buttons */
}

.flex-table-cell.number-cell {
    justify-content: flex-end;
    text-align: right;
    font-variant-numeric: tabular-nums; /* Monospace numbers */
}

.flex-table-cell.wrap-text {
    white-space: normal;
    word-break: break-word;
    align-items: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
}

/* Status indicators */
.flex-table-cell .status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.active {
    background-color: #d4edda;
    color: #155724;
}

.status-badge.inactive {
    background-color: #f8d7da;
    color: #721c24;
}

.status-badge.pending {
    background-color: #fff3cd;
    color: #856404;
}

/* Action buttons in cells */
.flex-table-cell .btn-action {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.flex-table-cell .btn-action:hover {
    background-color: #f8f9fa;
    border-color: #adb5bd;
}

.flex-table-cell .btn-primary {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.flex-table-cell .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.flex-table-cell .btn-danger {
    background-color: #dc3545;
    color: white;
    border-color: #dc3545;
}

.flex-table-cell .btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

/* Empty state */
.flex-table-empty {
    padding: 40px;
    text-align: center;
    color: #6c757d;
    font-style: italic;
}

/* Loading state */
.flex-table-loading {
    padding: 40px;
    text-align: center;
    color: #6c757d;
}

/* Responsive design */
@media (max-width: 768px) {
    .flex-table {
        min-width: 300px;
        max-width: 95vw;
        border-radius: 4px;
    }
    
    .flex-table-cell {
        padding: 8px 6px;
        font-size: 0.9rem;
    }
    
    .flex-table-header .flex-table-cell {
        font-size: 0.85rem;
    }
    
    .flex-table-row {
        min-height: 44px;
    }
    
    /* Hide less important columns on mobile */
    .flex-table-cell.hide-mobile {
        display: none;
    }
    
    /* Make action buttons smaller on mobile */
    .flex-table-cell .btn-action {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .flex-table {
        min-width: 280px;
    }
    
    .flex-table-cell {
        padding: 6px 4px;
        font-size: 0.85rem;
    }
    
    .flex-table-header .flex-table-cell {
        font-size: 0.8rem;
    }
}
@media (max-width: 900px) {
    .flex-table {
        max-height: none;
        height: auto;
    }
    .flex-table-cell.hide {
        display: none;
    }

}
/* Custom scrollbar for webkit browsers */
.flex-table-body::-webkit-scrollbar {
    width: 8px;
}

.flex-table-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.flex-table-body::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.flex-table-body::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

        /* Column width controls */
        .flex-table-cell.tiny {
            flex: .5; /* Fixed width for narrow columns */
        }

        .flex-table-cell.narrow {
            flex: 1; /* Fixed width for narrow columns */
        }

        .flex-table-cell.medium {
            flex: 2; /* Fixed width for medium columns */
        }

        .flex-table-cell.wide {
            flex: 3; /* Takes remaining space */
        }
       .flex-table-cell.x-wide {
            flex: 5; /* Takes remaining space */
        }
        .flex-table-cell.centered {
             justify-content: center; align-items: center;
        }
        /* Input styling */
        .flex-table-cell input[type="text"],
        .flex-table-cell input[type="email"],
        .flex-table-cell input[type="tel"] {
            border: 1px solid #ced4da;
            border-radius: 4px;
            padding: 6px 8px;
            font-size: 14px;
            width: 100%;
            box-sizing: border-box;
        }

        .flex-table-cell input[type="text"]:focus,
        .flex-table-cell input[type="email"]:focus,
        .flex-table-cell input[type="tel"]:focus {
            outline: none;
            border-color: #007bff;
            box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
        }

        .flex-table-cell input[type="checkbox"] {
            width: 16px;
            height: 16px;
        }

        /* Message/error styling */
        .flex-table-cell.message {
            color: #dc3545;
            font-size: 12px;
            min-width: 100px;
        }

        /* Action cell styling */
        .flex-table-cell.actions {
            justify-content: center;
        }

        .flex-table-cell.actions a {
            color: #007bff;
            text-decoration: none;
        }

        .flex-table-cell.actions a:hover {
            text-decoration: underline;
        }

    /* Iframe Container CSS */
        .iframe-container {
            position: absolute;
            top:0;
            width: fit-content;
            padding: 1em;
            max-height: 400px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 6px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            z-index: 1000;
            display: none;
            overflow: hidden;
        }
        .iframe-container-top {
            position: fixed;
            top: 15vh;  /* Changed from 20vh to 25vh */
            right: 20vw;
            width: 60vw;
            height: 65vh;  /* Reduced height to compensate */
            background-color: white;
            border: 1px solid var(--club-color);;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            z-index: 3000;
            display: none;
            flex-direction: column;
            max-height: 90vh;
       }

        .iframe-container.show {
            display: block;
        }

        .iframe-header {
            background-color: white;
            padding: 8px 12px;
            border-bottom: 1px solid var(--club-color);;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            font-weight: bold;
            color: var(--club-color);
        }

 
        .close-btn {
            background: none;
            border: none;
            font-size: 18px;
            cursor: pointer;
            color: var(--club-color);
            margin-right: 12px;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-btn:hover {
            font-style: italic;
            font-size:110%;
            font-weight:bold;
        }

        .email-iframe {
            width: fit-content;
            max-height: 400px;
            overflow-y: auto;
            border: none;
        }
  .top-iframe {
    width: 100%;           /* Fill container width */
    height: 100%;          /* Fill container height */
    border: none;

    /* Remove the padding and text wrapping properties - they don't work on iframes */
}
.iframe-content-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;  /* Centers horizontally */
    align-items: center;      /* Centers vertically */
    padding: 20px;
     height: 100%;
}
        /* Message styling */
        .msg-cell {
            color: var(--club-color);
            font-size: 12px;
            min-width: 100px;
        }

/* Container with flexbox setup */

       .iframe-container-top {
            position: fixed;
            top: 15vh;  /* Changed from 20vh to 25vh */
            right: 20vw;
            width: 60vw;
            height: 65vh;  /* Reduced height to compensate */
            background-color: white;
            border: 1px solid var(--club-color);;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            z-index: 3000;
            display: none;
            flex-direction: column;
            max-height: 90vh;
       }


      .iframe-header-top {
            background-color: white;
            padding: 12px;
            border-bottom: 1px solid var(--club-color);;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            font-weight: bold;
            color: var(--club-color);;
        }

/* New wrapper div to center the iframe */
.iframe-content-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Iframe sizing */
.top-iframe {
    width: 90%;
    height: 90%;
    border: none;   
}

/* Show state */
.iframe-container-top.show {
    display: flex;
}
.scroll-container {
    max-height: 65vh;
    overflow: auto;
    width: 90%;
    margin: 0 auto;  /* Centers the container */
    text-align: center;  /* Centers content inside */
}

/* ===== footer.css ===== */
/* Modified: 2025-09-14 18:46:47 */
/* Footer bar - full width blue bar with white text */
.footer {
   font-size: 0.8rem;
    align-items: center; /* Vertically centers the content */
    box-sizing: border-box;
    padding-left: 1em;
    width: 100vw;
    height: 8vh;
    background-color: var(--club-color);
    color: white;
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 500;  
 }

/* Footer item - individual elements within the footer */
.footer-item {
      text-align:center;
      width: 30vw;

 }

/* Optional: Additional footer styling for better appearance */
.footer a {
    color: white;
    text-decoration: none;
    font-weight:bold;
}


.footer a:hover {
    font-style: italic;
    font-size:110%;
}
@media (max-width: 900px) {
     .footer {
        position: relative;
     
     }
}

/* ===== gmForm.css ===== */
/* Modified: 2025-08-21 15:18:03 */
div.gmForm {
	width: 80%;
	margin-left: 10%;
	margin-right: 10%;

}
div.gmFormLine {
	width: 100%;
	display: inline-block;
	text-align: left;
	margin-bottom: 0px;
	margin-top: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
	clear: both;
	

}
div.gmFormLineCol {
	
	float: left;
	text-align: left;
	

}
div.gmFormTitle {
	width: 25%;
	float: left;
	text-size: large;
}
div.gmFormCol {
	width: 65%;
	float: left;
	text-size: large;
}

/* ===== gmHeader.css ===== */
/* Modified: 2025-08-21 15:18:02 */
div.gmHeader,p.gmHeader,span.gmHeader {
   
}
div.bold,p.bold,span.bold {
    font-weight: bold;
}
div.normal,p.normal,span.normal {

}
div.large,p.large,span.large {
    font-size: 125%;
}
div.xlarge,p.xlarge,span.xlarge {
    font-size: 155%;
}
div.regular,p.regular,span.regular {
    font-size: 100%;
}
div.small,p.small,span.small {
    font-size: 75%;
}
div.small,p.small,span.small {
    font-size: 75%;
}
div.top {
    background-color: #ffff40;
}


/* ===== gmImage.css ===== */
/* Modified: 2025-08-21 15:18:03 */
img.gmImage {
	float: left;
	padding-right: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
}


/* ===== gmTable.css ===== */
/* Modified: 2025-08-21 15:18:02 */
table.striped{
  border:1px solid black;
} 
table.striped tr:nth-child(odd){
background-color:#dfdfdf
}
table.striped tr:nth-child(even){
background-color:#ffffff
}

table.scroll th {
  color: black;
  font-weight: bold;
  height: 20px;
  vertical-align: middle;
  background-color: #ffffff;
  position: sticky;
  top: 0; /* Don't forget this, required for the stickiness */
}



/* ===== help.css ===== */
/* Modified: 2025-09-08 20:28:12 */
/* Outer help container div - positioned on screen */

.help-container {
    position: fixed;
    top: 15vh;  /* Changed from 20vh to 25vh */
    left: 10vw;
    width: 80vw;
    height: 65vh;  /* Reduced height to compensate */
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 3000;
    display: none;
    flex-direction: column;
    max-height: 70vh;
}


.help-content {
    padding: 20px;
    overflow-y: auto;
    overflow-x: hidden;  /* Hide horizontal overflow */
    box-sizing: border-box;
    flex-grow: 1;
    word-wrap: break-word;      /* Force long words to wrap */
    overflow-wrap: break-word;  /* Modern CSS property */
    hyphens: auto;              /* Add hyphens for better wrapping */
    white-space: normal;        /* Ensure text can wrap */
    height: 60vh;

}
/* Close button area at the bottom */
.help-footer {
    height: 8vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #eee;
    background-color: #f9f9f9;
    border-radius: 0 0 8px 8px;
}

.help-close-link {
    color: #007bff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.2s;
}
.help-close-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.help-close-btn:hover {
    background-color: #0056b3;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  

}


/* ===== link.css ===== */
/* Modified: 2025-09-03 15:51:03 */
span.head,a.head,button.head,input.head,span.tail,a.tail,button.tail,input.tail{
  font-family: 'Lobster Two', cursive ;
  font-size:large;
  font-weight:normal;
  font-style:none;
  text-decoration:none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: none;
  padding-left:1em;
  padding-right:1em;
}
a.head,button.head,input.head,a.tail,button.tail,input.tail:hover{
          font-style: italic;
            font-size:110%;
            font-weight:bold;
}
span.head,a.head,button.head,input.head{
  text-decoration:none;
  background-color:white;
  color:#3498db;
}
span.tail,a.tail,button.tail,input.tail{
  background-color:#3498db;
  color:white;
}

a.clean{
    text-decoration:none;
}
  span.circular {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: inline-  flex;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        font-weight: bold;
        transition: all 0.3s ease;
        cursor: pointer;
}
        
span.circular:hover {
    transform: scale(1.2);
 
}




/* ===== lists.css ===== */
/* Modified: 2025-08-21 15:18:03 */
ul, ol {
	margin-bottom: 10px;
}

li.rules {
	margin-left: 1em;
	margin-bottom: 10px;
}

ol.Bold {
	font-weight: bold;
}

ol.FAQ {
	font-weight: bold;
	letter-spacing: 1px;
	color: #003090;
}

ol.rules {
	font-family: Verdana;
	font-size: 13px;
	font-weight: normal;
	font-style: normal;
	padding: 0 0 0 0px;
	margin-left: 30px;
	letter-spacing: 0px;
	line-height: 150%;
	color: #000000;
}

ul.rules {
	font-family: Verdana;
	font-size: 13px;
	font-weight: normal;
	font-style: normal;
	padding: 0 0 0 0px;
	margin-left: 30px;
	
	letter-spacing: 0px;
	line-height: 150%;
	color: #000000;
}

ul.Indent {
	margin-left: 20px;
}	
p.homepage {
	color: black;
	margin-left: 20px;
	margin-botton:0px;
}

/* ===== nav.css ===== */
/* Modified: 2025-09-15 14:08:14 */
        /* Scoped reset for navbar only */
        .navbar,
        .navbar *,
        .navbar *::before,
        .navbar *::after {
            box-sizing: border-box;
        }

        .navbar ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .navbar a {
            text-decoration: none;
        }

        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
            overflow: visible !important;
         }

        .nav-container {
            max-width: 100vw;
            margin: 0 auto;
            padding: 0 0px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-height: 12vh;
            overflow: visible !important;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--club-color);
            text-decoration: none;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

         .nav-menu {
            display: flex;
            flex-direction: row;           /* Desktop default */
            list-style: none;
            gap: 20px;
            align-items: center;
            /* Remove all the mobile-specific positioning */
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            gap: 5px;
            padding: 15px;
            border-radius: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .nav-link:hover {
            font-style: italic;
            font-size:110%;
            font-weight:bold;

        }
       .nav-link_active {
    background: var(--club-color);
    color: white !important;
    padding: 8px 16px;          /* Add padding - top/bottom left/right */
    border-radius: 20px;        /* Rounded corners */
    margin: 2px;                /* Small margin so it doesn't touch edges */
        }


        .dropdown-arrow {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .nav-item:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            min-width: 200px;
            z-index: 8000;
            padding: 10px 0;
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-link {
            display: block;
            color: var(--club-color);
            text-decoration: none;
            padding: 12px 20px;
            transition: all 0.3s ease;
            font-weight: 400;
        }

        .dropdown-link:hover {
            background: var(--club-color);
            color: white;
            padding-left: 30px;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 3px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }



   .logo-section {
        max-width: 50%;
    }

    .menu-title {
        height: auto ;
        font-family: 'Lobster Two', cursive ;
        font-size:.75rem;
        font-weight:bold;
        vertical-align: CENTER;
    }
/* Mobile Styles */

@media screen and (max-width: 900px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
        align-items: stretch;
         height: calc(100vh - 70px); /* Full screen minus navbar */
        max-height: none; /* Remove max-height constraint */
        overflow-y: auto;
        padding-bottom: 8vh; /* Add padding for footer space */
   }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 5px 0;
    }

    .nav-link {
        padding: 15px;
        border-radius: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .dropdown {
        position: static !important;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 0;
        max-height: 0;
        overflow: hidden;  /* Fixed: was 'visible' */
        transition: max-height 0.3s ease;
        padding: 0;
        z-index: 10000;
    }

    .nav-item.mobile-dropdown-active .dropdown {
        max-height: 300px;
        padding: 10px 0;
    }

    .nav-item.mobile-dropdown-active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-link {
        padding: 10px 20px;
        font-size: 14px;
    }

    .dropdown-link:hover {
        padding-left: 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-container {
        height: 12vh;
        padding: 0 10px;
    }
}

    


@media screen and (min-width: 769px) {
    .nav-container {
        justify-content: space-between;  /* Change from flex-start back to space-between */
        gap: 2rem;
    }
   
    .nav-menu {
        position: static;
        left: auto;
        top: auto;
        flex-direction: row;
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        gap: 20px;
        box-shadow: none;
        align-items: center;
        text-align: left;
    }    
    .nav-item {
        margin: 0;                  /* Add this - reset mobile margin */
    }
    
    .nav-link {
        padding: 10px 16px;         /* Add this - reset mobile padding */
        border-radius: 25px;        /* Add this - restore desktop styling */
        width: auto;                /* Add this - reset mobile width:100% */
        justify-content: flex-start; /* Add this */
    }
    
    .hamburger {
        display: none !important;
    }
}
 .logo-section {
    display: flex;
    align-items: center;
    gap: 1em;
    color: var(--club-color, #ff0000);
}

.logo-container {
    flex-shrink: 0; /* Prevents logo from shrinking */
}

.logo-image {
    max-height: 60px;
    height: auto;
    width: auto;
}

.menu-title {
    font-family: 'Lobster Two', cursive;
    font-weight: bold;
    font-size: 0.9rem;
    line-height: 1.2;
}

.site-name {
    font-size: 1em;
    margin-bottom: 2px;
}

.welcome-text {
    font-size: 0.9em;
    opacity: 0.9;
}

/* Responsive adjustments */
@media screen and (max-width: 900px) {
    .logo-section {
        gap: 0.5em;
    }
    
    .logo-image {
        max-height: 50px;
    }
    
    .menu-title {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 480px) {
    .logo-image {
        max-height: 40px;
    }
    
    .menu-title {
        font-size: 0.65rem;
    }
    
    .welcome-text {
        display: none; /* Hide welcome text on very small screens */
    }
}

 



/* ===== p.css ===== */
/* Modified: 2025-08-21 15:18:02 */
p.center,p.title{
	width: 100%;
	text-align: center;
}
p.title{
	font-size: large;
}

/* ===== tooltip.css ===== */
/* Modified: 2025-09-01 21:54:51 */
        /* Tooltip system for anchor tags and input elements */
        span[data-tooltip],
        a[data-tooltip],
        input[data-tooltip] {
            position: relative;
            cursor: pointer;
        }

        a[data-tooltip] {
            text-decoration: none;
            color: #3b82f6;
        }

        a[data-tooltip]:hover {
            color: #2563eb;
        }
        span[data-tooltip] {
            text-decoration: none;
            color: #3b82f6;
        }

        span[data-tooltip]:hover {
            color: #2563eb;
        }

        /* Tooltip bubble */
        span[data-tooltip]::before,
        a[data-tooltip]::before,
        input[data-tooltip]::before {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%);
            background: #1e293b;
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
            z-index: 1000;
            pointer-events: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        /* Tooltip arrow */
        span[data-tooltip]::after,
        a[data-tooltip]::after,
        input[data-tooltip]::after {
            content: '';
            position: absolute;
            bottom: 115%;
            left: 50%;
            transform: translateX(-50%);
            border: 5px solid transparent;
            border-top-color: #1e293b;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            z-index: 1000;
        }

        /* Show tooltip on hover */
        span[data-tooltip]:hover::before,
        span[data-tooltip]:hover::after,
        a[data-tooltip]:hover::before,
        a[data-tooltip]:hover::after,
        input[data-tooltip]:hover::before,
        input[data-tooltip]:hover::after {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(-2px);
        }

        /* Position variations */
        span[data-tooltip].tooltip-right::before,
        a[data-tooltip].tooltip-right::before,
        input[data-tooltip].tooltip-right::before {
            bottom: auto;
            left: 125%;
            top: 50%;
            transform: translateY(-50%);
        }

        span[data-tooltip].tooltip-right::after,
        a[data-tooltip].tooltip-right::after,
        input[data-tooltip].tooltip-right::after {
            bottom: auto;
            left: 115%;
            top: 50%;
            transform: translateY(-50%);
            border: 5px solid transparent;
            border-right-color: #1e293b;
            border-top-color: transparent;
        }

        span[data-tooltip].tooltip-right:hover::before,
        span[data-tooltip].tooltip-right:hover::after,
        a[data-tooltip].tooltip-right:hover::before,
        a[data-tooltip].tooltip-right:hover::after,
        input[data-tooltip].tooltip-right:hover::before,
        input[data-tooltip].tooltip-right:hover::after {
            transform: translateY(-50%) translateX(2px);
        }

        span[data-tooltip].tooltip-left::before,
        a[data-tooltip].tooltip-left::before,
        input[data-tooltip].tooltip-left::before {
            bottom: auto;
            right: 125%;
            left: auto;
            top: 50%;
            transform: translateY(-50%);
        }

        span[data-tooltip].tooltip-left::before,
        a[data-tooltip].tooltip-left::before,
        input[data-tooltip].tooltip-left::after {
            bottom: auto;
            right: 115%;
            left: auto;
            top: 50%;
            transform: translateY(-50%);
            border: 5px solid transparent;
            border-left-color: #1e293b;
            border-top-color: transparent;
        }

        span[data-tooltip].tooltip-left:hover::before,
        span[data-tooltip].tooltip-left:hover::after,
         a[data-tooltip].tooltip-left:hover::before,
        a[data-tooltip].tooltip-left:hover::after,
        input[data-tooltip].tooltip-left:hover::before,
        input[data-tooltip].tooltip-left:hover::after {
            transform: translateY(-50%) translateX(-2px);
        }

        span[data-tooltip].tooltip-bottom::before,
        a[data-tooltip].tooltip-bottom::before,
        input[data-tooltip].tooltip-bottom::before {
            top: 125%;
            bottom: auto;
        }

        span[data-tooltip].tooltip-bottom::after,
        a[data-tooltip].tooltip-bottom::after,
        input[data-tooltip].tooltip-bottom::after {
            top: 115%;
            bottom: auto;
            border: 5px solid transparent;
            border-bottom-color: #1e293b;
            border-top-color: transparent;
        }

        span[data-tooltip].tooltip-bottom:hover::before,
        span[data-tooltip].tooltip-bottom:hover::after,
       a[data-tooltip].tooltip-bottom:hover::before,
        a[data-tooltip].tooltip-bottom:hover::after,
        input[data-tooltip].tooltip-bottom:hover::before,
        input[data-tooltip].tooltip-bottom:hover::after {
            transform: translateX(-50%) translateY(2px);
        }

        /* Color themes */
        span[data-tooltip].tooltip-blue::before,
       a[data-tooltip].tooltip-blue::before,
        input[data-tooltip].tooltip-blue::before { background: #3b82f6; }
        span[data-tooltip].tooltip-blue::after,
        a[data-tooltip].tooltip-blue::after,
        input[data-tooltip].tooltip-blue::after { border-top-color: #3b82f6; }

        span[data-tooltip].tooltip-green::before,
       a[data-tooltip].tooltip-green::before,
        input[data-tooltip].tooltip-green::before { background: #10b981; }
        span[data-tooltip].tooltip-green::after,
        a[data-tooltip].tooltip-green::after,
        input[data-tooltip].tooltip-green::after { border-top-color: #10b981; }

        span[data-tooltip].tooltip-red::before,
         a[data-tooltip].tooltip-red::before,
        input[data-tooltip].tooltip-red::before { background: #ef4444; }
        span[data-tooltip].tooltip-red::after,
        a[data-tooltip].tooltip-red::after,
        input[data-tooltip].tooltip-red::after { border-top-color: #ef4444; }


/* Tooltip styling */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
    pointer-events: none;
}
/* Preserve number input spinner behavior */
input[type="number"][data-tooltip] {
    cursor: text; /* or cursor: auto; */
}

/* Ensure spinner arrows are visible */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: auto;
    opacity: 1;
    cursor: pointer;
}

input[type="number"] {
    -moz-appearance: auto;
}
Option 2: Increase the width and add specific styling
Modify your input to have more space:
html<input type="number" min="4" step="1" max="32" 
       style='width:6ch; padding-right: 20px;' 
       value='<?php echo ssfClub()->getCol('cut_off');?>' 
       data-tooltip='Maximum number of participants' 
       name='cutoff' id='cutoff'>
Option 3: Override tooltip positioning for number inputs
Add this specific rule to handle number inputs differently:
css/* Special handling for number inputs with tooltips */
input[type="number"][data-tooltip]::before {
    right: -10px; /* Move tooltip away from spinner area */
    left: auto;
}

input[type="number"][data-tooltip]::-webkit-outer-spin-button,
input[type="number"][data-tooltip]::-webkit-inner-spin-button {
    position: relative;
    z-index: 10; /* Ensure spinners are above tooltip positioning */
}
The most likely fix is Option 1 - the cursor: pointer is probably interfering with the native spinner controls. Try adding that CSS and increasing your width to 6ch or 60px.RetryClaude can make mistakes. Please double-check responses.

/* ===== topHeaderText.css ===== */
/* Modified: 2025-08-21 15:18:02 */
div.topHeaderText{
	float: left;
	vertical-align: top;
	padding-left: 14px;
	padding-right: 14px;
	backgroud-color: #ffff80;

}
div.topHeaderText ul{
	margin-left: 1em;
	list-style-type: square;
}

/* ===== css files 1 ===== */
