/* Custom Styles */


#lesson-calculator {
    font-family: Arial, sans-serif;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#lesson-calculator h3
{
    color: #6c35b7;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #6c35b7;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #6c35b7;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #5c2da0;
}

#results {
    margin-top: 20px;
    padding: 15px;
    background-color: white;
    border-radius: 4px;
    text-align: center;
}

#results p {
    margin: 5px 0;
    color: #6c35b7;
}

#bamsquad-options {
    max-width: 600px;
    width: 100%;
    margin: 20px auto 0;
}

#bamsquad-options h4 {
    color: #6c35b7;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

#bamsquad-options table {
    width: 100%;
    border-collapse: collapse;
}

#bamsquad-options th, #bamsquad-options td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

#bamsquad-options th {
    background-color: #f2f2f2;
}