﻿/* Style the tab */
.tab {
    float: left;
    width: 30%;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    display: block;
    color: black;
    background: #ffcd53;
    padding: 22px 16px;
    font-size: 18px;
    width: 100%;
    margin-left: 10px;
    outline: none;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0px 2px 2px 2px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

  /* Create an active/current "tab button" class */
.tab button.active {
      background-color: #f3ef9e;

  }

/* Style the tab content */

.tabcontent {
    float: right;
    margin-top:30px;
    padding: 0px 12px;
    width: 65%;
    margin-bottom:40px;
}
.lessons-content{
    padding:20px;
    font-size:16px;
}

.tabcontent h2{
    background-color: #DCF2DB;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}
.lessons-content h4{
    margin: 20px 0;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #DCF2DB;
}
.lessons-content ul{
    margin-left:40px;
}
.unlinkedBtn{
    color: white !important;
}