body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    direction: rtl;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #e0f7fa;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
    color: #000;
}

form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

label {
    margin-bottom: 5px;
    color: #000;
}

input[type="text"]{
    width: 95%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.member {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.member input[type="text"] {
    width: 30%;
    /* margin-right: 10px; */
}

.member select {
    width: 70%;
}

.score-scale {
    width: 35%;
}

#add-member, #remove-member {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

#add-member:hover {
    background-color: #0056b3;
}

#remove-member:hover {
    background-color: #0056b3;
}

.submit-button{
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.submit-button:hover{
    background-color: #0056b3;
}
