﻿/* General form container styling */
#participants {
    margin-bottom: 20px;
}

/* Styling for each participant box */
.participant {
    border: 1px solid #cccccc;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    background-color: #f9f9f9; /* Light gray background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

    /* Input field styling */
    .participant .form-control {
        margin-bottom: 10px;
    }

    /* Remove button styling */
    .participant .remove-participant {
        background-color: #e74c3c;
        color: white;
        border: none;
        padding: 8px 12px;
        border-radius: 5px;
        cursor: pointer;
    }

        .participant .remove-participant:hover {
            background-color: #c0392b; /* Darker red on hover */
        }

/* Add Participant button styling */
#addParticipant {
    margin-top: 10px;
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

    #addParticipant:hover {
        background-color: #2980b9; /* Darker blue on hover */
    }

/* Submit button styling */
#registrationForm .btn-success {
    margin-top: 20px;
    background-color: #2ecc71;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

    #registrationForm .btn-success:hover {
        background-color: #27ae60; /* Darker green on hover */
    }
