/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

/* Header Section */
.my-classes-header {
    text-align: center;
    padding: 20px;
    background-color: #4CAF50;
    color: white;
}

.my-classes-header h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

/* Table Styles */
.classes-table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.classes-table th, .classes-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
}

.classes-table th {
    background-color: #f8f9fa;
    font-weight: bold;
}

.classes-table td a {
    color: #4CAF50;
    text-decoration: none;
}

.classes-table td a.danger {
    color: #f44336;
}

/* Buttons */
.action-button {
    display: inline-block;
    padding: 10px 15px;
    margin: 5px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.action-button:hover {
    background-color: #45a049;
}

.action-button.danger {
    background-color: #f44336;
}

.action-button.danger:hover {
    background-color: #d32f2f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .classes-table {
        font-size: 0.9em;
    }

    .action-button {
        padding: 8px 12px;
    }
}
