html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.v-hr {
    border: none;
    border-left: 1px solid hsla(200, 10%, 50%,100);
    height: 64%;
    min-height: 20px;
    width: 1px;
    margin: auto 15px auto 0px;
}

.nav-tabs-custom {
    display: flex;
    gap: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-tab {
    flex: 1;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    color: #495057;
    background: white;
    border: 1px solid #dee2e6;
    border-right: none;
    font-weight: 500;
}

    .nav-tab:hover {
        background: #f8f9fa;
        color: #0a58ca;
    }

    .nav-tab.active {
        background: #0a58ca;
        color: white;
        border-color: #0a58ca;
    }

    .nav-tab i {
        margin-right: 6px;
    }