#marks-container {
    margin: 0 auto;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
	min-height: 90%;
}

.grade-card {
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    background-color: #fff;
	margin-top: 20px;
	
}

.grade-card p {
    margin: 5px 0;
    font-size: 14px;
}

.grade-card strong {
    font-weight: bold;
}
.grades-table {
    width: 80%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: left;
	margin: auto;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.grades-table th,
.grades-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.grades-table th {
    background-color: #f9f9f9;
    text-align: center;
    font-weight: bold;
}

.grades-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.grades-table tr:hover {
    background-color: #e6e6e6;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    border-radius: 8px;
}

.close-modal {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
	color: #888;
	transition: color 0.3s;
}
.close-modal:hover {
	color: red;
}
.actions-container {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
	margin-left: 10%;
}

.actions-container button {
    padding: 10px 15px;
    cursor: pointer;
    border: 1px solid #ccc;
    background-color: #f8f8f8;
    border-radius: 5px;
}

.actions-container button:hover {
    background-color: #e0e0e0;
}
#grades-list {
    overflow-y: auto;
    margin-top: 10px;
	scrollbar-width: thin;
    scrollbar-color: #888 #fff;
	width: 100%;
}

.grade-card {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 5px;
    font-weight: bold;
}

form input, form select {
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

#selectors-container {
    margin-bottom: 10px;
	margin-left: 10%;
	margin-top: 50px;
}

#selectors-container label {
    font-weight: bold;
    margin-right: 10px;
}

#selectors-container select {
    padding: 5px 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
	max-width: 30%;
	margin-right: 100%;
}

label {
    width: 200px;
}
