/* Register Section */
#register {
    background: #e9ecef;
	/*background: url('./images/Banner4.jpg') no-repeat center center/cover;*/
    padding: 50px 0;
    text-align: center;
}

#register form input {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#register form button {
    padding: 10px 20px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#register form button:hover {
    background: #218838;
}

/* Registration Fees Table */
.registration-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #ffffff;
    text-align: left;
    font-size: 1rem;
}

.registration-table th,
.registration-table td {
    padding: 12px;
    border: 1px solid #ccc;
}

.registration-table th {
    background-color: #007BFF;
    color: white;
}

.registration-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.registration-table a {
    color: #007BFF;
    text-decoration: none;
}

.registration-table a:hover {
    text-decoration: underline;
}
