﻿.add-List {
    display: flex;
    justify-content: flex-end; /* Aligns children (the button) to the right */
}

.add-button {
    padding: 5px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

    .add-button:hover {
        background-color: #0056b3;
        color: white;
    }

.search-container {
    display: flex;
    align-items: center;
}

    .search-container input {
        margin-right: 10px;
        height: 35px;
        font-size: 16px;
    }

    .search-container button {
        height: 40px;
        font-size: 16px;
    }

.user-details-box {
    width: 91%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .user-details-box label {
        font-weight: bold;
        display: inline-block;
        width: 150px; /* Make label fixed width */
    }

    .user-details-box .user-detail-item {
        /* margin-bottom: 10px;*/
        align-items: center;
    }

        .user-details-box .user-detail-item span {
            display: inline-block;
            flex-grow: 1;
            color: #333;
        }

/* Styling for verified and not verified */
.verified {
    color: green;
    font-weight: bold;
}

.not-verified {
    color: red !important;
    font-weight: bold;
}

label {
    font-weight: bold;
}

.user-detail-item .row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2px; /* Add some space between rows */
}

.user-detail-item .col-md-6 {
    display: flex;
    align-items: center;
}

.user-detail-item label {
    font-weight: bold;
    text-align: left;
    width: 100%;
}

.user-detail-item span {
    display: inline-block;
    min-width: 200px; /* Add a minimum width for the value (optional) */
}

.dipreloader {
    background-color: rgba(0, 0, 0, .5);
    display: flex;
    height: 100vh;
    width: 100%;
    transition: height 200mslinear;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
}

.docind .nav-link {
    padding: .1rem .5rem;
}

    .docind .nav-link.active {
        color: #007bff;
        border-bottom: 2px solid;
        font-weight: 500;
    }
