/* ==========================================================================
   Course and Application Cards
   ========================================================================== */

   .course-card {
    width: 155px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    opacity: 0.8;
}

  .canvas-course-card {
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    opacity: 0.8;
}

.course-card.active-course {
    border: 2px solid #007bff;
    background-color: #e0f7fa;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    transform: scale(1.05);
    opacity: 1;
}

.course-image {
    position: relative;
}

.course-image img {
    width: 100%;
    height: auto;
}

.course-overlay,
.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(204, 70%, 53%, 0.3);
}

.course-name {
    padding: 5px;
    text-align: center;
    background-color: #fff;
    font-size: 0.85em;
    font-weight: bold;
}

.application-card {
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    text-align: center;
    margin: 10px;
}

.application-card p {
    padding: 10px;
}

.application-image {
    padding: 25px;
    width: 100%;
    height: auto;
    position: relative;
}

.application-image img {
    width: 100%;
    height: auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.application-details {
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.application-name {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
}

.launch-button {
    background-color: hsla(204, 70%, 53%, 0.9);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 5px;
}

.launch-button:hover {
    background-color: hsla(204, 70%, 53%, 1);
    transform: scale(1.05);
}

.launch-button img {
    width: 20px;
    height: 20px;
}