
.container {
    max-width: 80%;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.create-section, .classroom-sections, .my-courses {
    margin-bottom: 40px;
}

.create-section h2, .classroom-sections h2, .my-courses h2 {
    margin-bottom: 15px;
    font-size: 24px;
    color: #333;
}

.new-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px dashed #ddd;
    padding: 15px;
    border-radius: 8px;
    background-color: #fafafa;
}

.create-button {
    background-color: #9b57b0;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
}

.create-button:hover {
    background-color: #7e3f8e;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    word-break: break-all; 
}

th {
    background-color: #f0f0f0;
    color: #333;
}

a {
    color: #6a0dad;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    background-color: #6a0dad;
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #572b7b;
}

.gear-button {
    background-color: transparent;
    font-size: 18px;
    color: #6a0dad;
    border: none;
    cursor: pointer;
}

.gear-button:hover {
    color: #572b7b;
}

.find-course, .add-students {
    background-color: #ddd;
    color: #333;
    border-radius: 5px;
}

.find-course:hover, .add-students:hover {
    background-color: #000;
}

.course-box {
    padding: 20px;
    background-color: #00a4d3;
    color: white;
    font-size: 16px;
    border-radius: 7px;
    text-align: center;
}
footer {
    text-align: left;
    margin-left: 50px;
    margin-top: 10px;
}

footer a {
    color: #007BFF;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}