
.rightsidemodules {
    width: 18%;
    height: auto;
    padding: 10px;
    float: right;
    position: inherit;
    z-index: 1;
    top: 100px;
    left: 5px;
    overflow-x: hidden;
}

.rightsidemodules a {
    padding: 2px 2px 2px 2px;
    text-decoration: none;
    font-size: 14px;
    color: #2196F3;
    display: block;
}

.rightsidemodules a:hover {
    color: #064579;
}

.cardCourse {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 32%;
    margin: 5px;
    text-align: center;
    font-family: arial;
    float: left;
}

.name {
    font-size: 20px;
    text-align: center;
    padding: 5px
}

.title {
    font-size: 20px;
    text-align: center;
    padding: 5px
}

.briefing {
    color: grey;
    font-size: 16px;
    text-align: center;
    padding: 5px
}


.cardCourse button {
    border: none;
    outline: 0;
    padding: 12px;
    color: black;
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 12px;
}

.cardCourse button:hover {
    opacity: 0.7;
}

.cardCourse img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 5px;
    transition: transform 0.2s ease;
}

.dropdownMegaMenu {
    float: left;
    overflow: hidden;
}

.dropdownMegaMenu .dropbtn {
    font-size: 16px;  
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font: inherit;
    margin: 0;
}

.dropdownMegaMenu-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 85%;
    margin-left: 15%;
    left: 0;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdownMegaMenu-content .header {
    background: red;
    padding: 5px;
    color: white;
}

.dropdownMegaMenu:hover .dropdownMegaMenu-content {
    display: block;
}

/* Create five equal columns that floats next to each other */
.column {
    float: left;
    width: 19%;
    padding: 5px;
    background-color: #ccc;
    height: 400px;
}

.column a {
    float: none;
    color: black;
    padding: 10px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.column a:hover {
    background-color: #ddd;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        width: 100%;
        height: auto;
    }
}

/* Style course tab links */
.tabCourse {
    background-color: lightgrey;
    color: blue;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    font-size: 17px;
    width: 25%;
}

.tabCourse:hover {
    background-color: white;
    color: black;
}

/* Style the course tab content (and add height:100% for full page content) */
.tabcontentCourse {
    color: black;
    display: none;
    padding: 100px 20px;
    height: 1000px;
}

/* Text Section */
.course_info {
    flex: 1;
    text-align: left;
    font-size: 16px;
    padding: 10px;
}

.course_info h2 {
    font-size: 20px;
    color: #0073b1;
    margin-bottom: 10px;
}

.course_info h3 {
    font-size: 16px;
    color: #333;
}

course_info:nth-child(even) { 
    background: #FFFFFF; 
}

course_info:nth-child(odd) { 
    background: #FFFFFF; 
}

.searchInput
{
    font-size: 18px;
}

.searchInput input[type=text] {
    width: 95%;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background-color: white;
    background-image: url('../images/searchicon.png');
    background-position: 10px 10px; 
    background-repeat: no-repeat;
    padding: 12px 20px 12px 40px;
}

