@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    height: 100vh;
    width: 100vw;
}

input, select, textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
}

button {
    border-radius: 5px;
    border: none;
    padding: 3px 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.4rem;
}

.btn-confirm {
    background-color: #4CAF50;
    color: white;

}

.btn-cancel {
    background-color: #f44336;
    color: white;
}


#add-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
}

#add-section form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#add-section .aluno-entry {
    display: flex;
    gap: 1rem;
}

.btn-edit {
    background-color: #ddce00;
    color: white;
}

.btn-default {
    background-color: #4240a5;
    color: white;
}

.error-message {
    color: #f44336;
    margin-bottom: 1rem;
    font-weight: 600;
}

.flex-row {
    display: flex;
    justify-content: space-evenly;
}

.flex-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.material-symbols-outlined {
    font-size: 2rem !important;
}

.icon-white {
    color: white;
}

.padding-0 {
    padding: 0 !important;
}