﻿.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover,
.nav-tabs > li.active > button, .nav-tabs > li.active > button:focus, .nav-tabs > li.active > button:hover {
    border: 0;
    background-color: #fff;
}

.nav-tabs li > a,
.nav-tabs li > button {
    padding: 10px 30px
}

.nav-tabs > li.active {
    border-bottom: 3px solid cyan;
}


.breadcrumb {
    background: #ddd;
    display: inline-block;
    padding: 2px;
    padding-right: 15px;
    -webkit-clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%, 15px 50%);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%, 15px 50%);
}

.breadcrumb li {
    display: inline-block;
    background: white;
    padding: 0;
    position: relative;
    min-width: 50px;
    text-decoration: none;
    -webkit-clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%, 15px 50%);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%, 15px 50%);
    margin-right: -13px;
}

.breadcrumb li#last {
    -webkit-clip-path: polygon(0 0, calc(100% - 0px) 0, 100% 50%, calc(100% - 0px) 100%, 0 100%, 15px 50%);
    clip-path: polygon(0 0, calc(100% - 0px) 0, 100% 50%, calc(100% - 0px) 100%, 0 100%, 15px 50%);
}

.breadcrumb li:hover {
    color: white;
    background: #fff;
}

/* first link should not have anything cliped on the left side */
.breadcrumb li:first-child {
    -webkit-clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
}

.nav-tabs > li.invalidTab {
    border-bottom: 3px solid red;
    background-color: lightpink;
}

.label {
    height: 100%;
    width: 100%;
}

/* Custom CSS for the category based tabs*/
.custom-tabs .nav-tabs {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.custom-tabs .nav-item {
    flex-grow: 1;
    text-align: center;
    margin: 0;
    width: auto;
    border: groove;
    background-color: gray; /* Sets the background color to gray */
}

.custom-tabs .nav-link {
    display: inline;
    color: black; /* Sets the text color to black */
    font-weight: bold; /* Makes the text bold */
    border: 1px solid transparent; /* Transparent border for all tabs */
    border-bottom: none; /* Remove bottom border */
}

.custom-tabs .nav-tabs > li.active {
    /*border-bottom: 3px solid black;*/
    border-color: #CCCCCC; /* Color to match the tab content */
    border-bottom: none; /* Remove bottom border */
}

.custom-tabs .tab-content {
    /*border: 1px solid #dee2e6;*/ /* Border to match the active tab */
    border: 1px solid #CCCCCC; /* Light gray border */
    border-radius: 5px; /* Slightly rounded corners */
    padding: 10px; /* Some padding inside the border */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

