:root {
    --icamp-white: #fff;
    --icamp-primary: #0F1241;
    --icamp-secondary: #009FFF;
}
body {
    background-color: rgb(244, 244, 244);
}
a {
    color: var(--icamp-secondary);
    text-decoration: none;
}
a:hover {
    color: var(--icamp-secondary);
    text-decoration: underline;
}
.btn {
    color: var(--icamp-white);
    background-color: var(--icamp-secondary);
    border: 2px solid var(--icamp-secondary);
    border-radius: 200px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.btn:hover {
    color: var(--icamp-secondary);
    background-color: var(--icamp-white);
    border: 2px solid var(--icamp-secondary);
}
input[type="text"],
input[type="password"] {
    border-radius: 200px;
    padding: 10px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
}
.logo {
    max-height: 100px;
}
.user {
    padding-top: 15px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.user button {
    color: var(--icamp-primary);
    background-color: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--icamp-primary);
    padding: 4px;
    padding-right: 10px;
    border-radius: 200px;
}
.user button:hover,
.user button:active,
.user button:focus {
    border: 2px solid var(--icamp-primary);
}
.user button div {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--icamp-secondary);
    color: var(--icamp-white);
    font-size: 20px;
    width: 42px;
    height: 42px;
    border-radius: 200px;
    flex-shrink: 0;
}

.course-cover {
    min-height: 300px;
    border: 1px solid #e0e0e0;
    width: 100%;
}
.course-cover.empty {
    max-height: 300px;
}
.course {
    margin-top: -50px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.course-edition-date {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.media {
    position: relative;
    display: block;
    min-width: 200px;
    min-height: 200px;
}
.media.video::before {
    content: "\f04b"; /* FontAwesome play icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}
.media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}