/* =========================
   Senior League Signup - Full Styling
   ========================= */

/* ----- SECTION TITLES ----- */
h3 {
    font-weight: 800;
    margin-bottom: 10px;
    color: #145a32;
}

/* ----- LIST / ROW LAYOUT ----- */



/* Container for signup page content */



/* ----- SIGNUP PANEL / CONTAINER ----- */
.signup-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 25px 30px;          /* more padding for a panel feel */
    background-color: #f0f8f5;   /* light green/gray background */
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* subtle shadow */
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #333;
	    border-left: 6px solid #4CAF50;

}





/* Reset list styling for dates */
ul.league-dates {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

/* Date boxes as grid, aligned left */
.league-dates li {
    display: grid;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    /*border: 1px solid #ccc; */
    border-radius: 8px;
    background-color: #f7f7f7;
    margin: 0;  /* removes extra space / indentation */
    transition: background-color 0.2s ease;
}

/* Closed list: 3 columns */
.closed-list li {
    grid-template-columns: 130px 1fr 140px; /* Date | Description | Status */
}

/* Open list: 4 columns */
.open-list li {
    grid-template-columns: 130px 1fr 140px auto; /* Date | Description | Status | Button */
}

/* ----- ALTERNATING STRIPES ----- */
.league-dates li:nth-child(odd) {
    background-color: #f9f9f9;
}

.league-dates li:nth-child(even) {
    background-color: #edf9ed;
}

/* Hover effect */
/*.league-dates li:hover {
    background-color: #e0f0e0;
}*/
.league-dates li:hover {
    background-color: #e6f7e6; /* light green hover */
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}


/* Closed list: 3 columns */
.closed-list li {
    grid-template-columns: 130px 1fr 140px; /* Date | Description | Status */
}

/* Open list: 4 columns */
.open-list li {
    grid-template-columns: 130px 1fr 140px auto; /* Date | Description | Status | Button */
}

/* ----- ALTERNATING STRIPES ----- */
.league-dates li:nth-child(odd) {
    background-color: #f9f9f9;
}

.league-dates li:nth-child(even) {
    background-color: #edf9ed;
}

/* Hover effect */
.league-dates li:hover {
    background-color: #e0f0e0;
}

/* ----- COLUMNS ----- */
.col-date {
    font-size: 1rem;
    font-weight: 600;
}

.col-desc {
    font-size: 0.85rem; /* smaller than date */
    line-height: 1.2rem;
    color: #444;
}

.col-status {
    font-size: 0.9rem;
    text-align: left;
}

/* ----- STATUS TEXT ----- */
.status-registered {
    color: #2e7d32; /* green */
    font-weight: 700;
}

.status-noplay {
    color: #666;
    font-size: 0.75rem;
    font-style: italic;
}

.status-notsigned {
    color: #999;
    font-size: 0.85rem;
}

/* ----- BUTTONS ----- */
.col-action {
    text-align: right;
    white-space: nowrap;
}

/* Signup button = blue */
.signup-btn {
    background-color: #2e7d32;  /* dark green */
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.signup-btn:hover {
    background-color: #1b4f1b;  /* darker green on hover */
    transform: scale(1.05);
}


/* Cancel*


/*  MANUAL ADDITIONS */

.welcome-box {
    border: 2px solid #ccc;
    /*border-left: 6px solid #4CAF50;  */  /* green accent line */
    background-color: #f9f9f9;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    text-align: left;
    max-width: 500px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1); /* subtle shadow */
}




.welcome-box strong {
    font-size: 1.5em;
    display: block; 
    margin-bottom: 5px;
}

.welcome-box em {
    font-size: 1.2em;
    color: #555;
    display: block; 
}


.signup-container, .league-dates li, .welcome-box {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #333;
}



