/* Tab structure styling */
.tab-wrapper {
    border: 1px solid #e0e0e0;
    padding: 10px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-buttons {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between tab buttons */
    margin-bottom: 10px;
}

.tablink {
    cursor: pointer;
    background-color: #f7f7f7;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    outline: none; /* remove the default focus outline */
    color: #000 !important;
}

.create-tab-btn{
    cursor: pointer;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    outline: none; /* remove the default focus outline */
    color: #000 !important;
    background-color: transparent;
}


.tablink:hover {
    background-color: #e0e0e0;
}

.tablink.active {
    background-color: #d0d0d0;
    color: #000;
    font-weight: bold;
}

.tabcontent {
    display: none; /* By default, all tabs are hidden */
    padding: 10px;
    border-top: 1px solid #e0e0e0;
}
