.participant-list {
    max-height: 500px;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    background: #f9f9f9;  	
}
.participant-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease-in-out;
}
.participant-item:hover {
    background: #e9ecef;
}
.participant-checkbox {
    transform: scale(1.2);
    margin-right: 10px;
}
.participant-status {
    width: 150px;
}
.teammate-selection {
    padding-left: 35px;
}
.participant-name {
	width: 150px;
}
.events-table {
    width: 100%;
    border-collapse: collapse;
}
.error {
	color: red!important;
}
.success {
	color: green!important;
}
.events-table th, .events-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
.events-table th {
    background: #f4f4f4;
}
#login-form, #forgot-password-form, #reset-password-form {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
}
.custom-profile-form {
    max-width: 600px;
    margin: 20px auto;
    font-family: system-ui, sans-serif;
}

.custom-profile-form .form-group {
    margin-bottom: 1rem;
}

.custom-profile-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.custom-profile-form input[type="text"],
.custom-profile-form input[type="tel"],
.custom-profile-form input[type="email"],
.custom-profile-form input[type="url"],
.custom-profile-form textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.custom-profile-form input:focus,
.custom-profile-form textarea:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
}

.custom-profile-form textarea {
    resize: vertical;
    min-height: 100px;
}

.custom-profile-form button[type="submit"] {
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}