﻿.step-left {
    background-color: #bbb;
    width: 0;
    height: 0;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 24px solid white;
    color: white;
}

.step-content {
    background-color: #bbb;
    color: white;
    font-size: 1.2em;
    line-height: 2.4em;
    width: 5em;
    margin: 0;
}

.step-right {
    background-color: white;
    width: 0;
    height: 0;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 24px solid #bbb;
}

.step-container {
    flex-direction: row;
    flex-wrap: nowrap;
    display: flex;
    justify-content: center;
}

    .step-container li {
        list-style-type: none;
    }

.step-content.active {
    background-color: #007bff;
}

.step-right.active {
    border-left: 30px solid #007bff;
}

.step-left.active {
    background-color: #007bff;
}

.z-tab {
    list-style-type: none;
    flex-direction: row;
    flex-wrap: nowrap;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.z-tab-item {
    flex: 1;
    background-color: white;
    cursor: pointer;
    font-size: 1.4em;
    height: 2.4em;
    line-height: 2.4em;
    border-bottom: 1px solid #ccc;
}

    .z-tab-item.active {
        background-color: white;
        border-top: 1px solid #ccc;
        border-left: 1px solid #ccc;
        border-right: 1px solid #ccc;
        border-bottom: none;
        border-radius: 8px 8px 0 0;
        font-weight: bold;
    }
    .z-tab-item.disabled {
        color: #666;
        cursor: not-allowed;
    }
    .z-tab-item:hover {
        background-color: lightyellow;
    }

.z-tab-content {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-radius: 0 0 8px 8px;
    display: none;
}

    .z-tab-content.active {
        display: block;
    }

.url {
    text-decoration: underline;
    color: blue;
    cursor: pointer;
}
.table.table-condensed tr th {
    border-bottom: 2px solid #f00; /* Change the color you want to set */
}

.table.table-condensed tr td {
    border-bottom: 1px solid #f00; /* Change the color you want to set */
}

.float-nav {
    position: fixed;
    top: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

    .float-nav button {
        width: 44px;
        height: 44px;
        border: none;
        border-radius: 12px;
        background: rgba(0, 123, 255, 0.9);
        color: #fff;
        font-size: 18px;
        box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        transition: all 0.2s ease;
    }

        .float-nav button:hover {
            transform: translateY(-2px) scale(1.05);
            background: rgba(0, 123, 255, 1);
        }

        .float-nav button:active {
            transform: scale(0.95);
        }