/* assets/css/style.css */

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

.my-ceu-login,
.my-ceu-registration,
.my-ceu-profile,
.my-ceu-dashboard,
.my-ceu-add-course,
.my-ceu-course-detail {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.my-ceu-login h2,
.my-ceu-registration h2,
.my-ceu-profile h2,
.my-ceu-dashboard h2,
.my-ceu-add-course h2,
.my-ceu-course-detail h2 {
    text-align: center;
}

.my-ceu-error {
    color: red;
    margin-bottom: 15px;
}

.my-ceu-success {
    color: green;
    margin-bottom: 15px;
}

.my-ceu-login form,
.my-ceu-registration form,
.my-ceu-profile form,
.my-ceu-add-course form {
    display: flex;
    flex-direction: column;
}

.my-ceu-login form p,
.my-ceu-registration form p,
.my-ceu-profile form p,
.my-ceu-add-course form p {
    margin-bottom: 15px;
}

.my-ceu-login label,
.my-ceu-registration label,
.my-ceu-profile label,
.my-ceu-add-course label {
    font-weight: bold;
    margin-bottom: 5px;
}

.my-ceu-login input[type="text"],
.my-ceu-login input[type="password"],
.my-ceu-registration input[type="text"],
.my-ceu-registration input[type="email"],
.my-ceu-profile input[type="text"],
.my-ceu-profile input[type="email"],
.my-ceu-add-course input[type="text"],
.my-ceu-add-course input[type="number"],
.my-ceu-add-course input[type="date"],
.my-ceu-add-course input[type="month"],
.my-ceu-dashboard input[type="month"] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.my-ceu-login button,
.my-ceu-registration button,
.my-ceu-profile button,
.my-ceu-add-course button,
.my-ceu-dashboard button,
.my-ceu-dashboard a.button {
    padding: 10px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    margin-right: 10px;
}

.my-ceu-dashboard a.button {
    display: inline-block;
}

.my-ceu-dashboard h3 {
    margin-top: 30px;
}

.my-ceu-dashboard table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.my-ceu-dashboard table th,
.my-ceu-dashboard table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.my-ceu-dashboard table th {
    background-color: #f4f4f4;
}

.my-ceu-dashboard table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.my-ceu-dashboard table tr:hover {
    background-color: #f1f1f1;
}

.my-ceu-dashboard .button {
    margin-top: 10px;
}

.my-ceu-hero img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}

.my-ceu-courses th,
.my-ceu-courses td {
    text-align: left;
}

.my-ceu-courses th {
    cursor: pointer;
}

.my-ceu-courses th.sort-asc::after {
    content: ' \25B2';
}

.my-ceu-courses th.sort-desc::after {
    content: ' \25BC';
}

/* Responsive Styles */
@media screen and (max-width: 600px) {
    .my-ceu-dashboard table,
    .my-ceu-dashboard table thead,
    .my-ceu-dashboard table tbody,
    .my-ceu-dashboard table th,
    .my-ceu-dashboard table td,
    .my-ceu-dashboard table tr {
        display: block;
    }

    .my-ceu-dashboard table tr {
        margin-bottom: 15px;
    }

    .my-ceu-dashboard table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .my-ceu-dashboard table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 15px;
        font-weight: bold;
        text-align: left;
    }

    .my-ceu-dashboard table th {
        display: none;
    }
}
