﻿.txtjustfy {
    text-align: justify;
}

.homelogoimg {
    width: 130px;
    height: 50px;
    vertical-align: middle;
}

.aligned-text {
    vertical-align: middle;
}


header-right {
    display: flex; /* Use flexbox for alignment */
    justify-content: flex-end; /* Align to the right */
    align-items: center; /* Vertically align items */
    height: 100%; /* Ensure it fills the parent container */
}

.block-signin {
    display: inline-flex; /* Inline layout with flexbox */
    align-items: center; /* Vertically center align */
    gap: 6px; /* Space between buttons */
}

    .block-signin .btn {
        padding: 3px 11px;
        text-decoration: none; /* Remove underline */
        border-radius: 5px; /* Rounded corners */
        transition: all 0.3s ease; /* Smooth hover effect */
    }

        .block-signin .btn:hover {
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hover shadow */
        }


.main-signup-header label {
    color: #031b4e;
    font-weight: bold;
}

body {
    color: #333 !important;
}

.colorblue {
    color: blue;
}

.footerWhite {
    background-color: #05264E !important; /* #192733 */
    color: #fff !important;
    font-weight: bold;
    padding: 5px;
    /*background: linear-gradient(to bottom, #ffffff, #e8f0ff) !important;
    color: #222 !important;*/
}

.Whitetxt {
    color: #fff !important;
}

.yellowtxt {
    color: #ffeb3b !important;
}


.font-xs14 {
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 18px !important;
}

.redfont {
    color: red;
    font-size: small;
}

.colorblue {
    color: blue;
}
 
.main-signup-header label {
    color: #031b4e;
    font-weight: bold;



}



.color-text-paragraphblack {
    color: #000 !important;
}



.nav {
    flex-wrap: nowrap !important;
}

.nav-tabs-horizontal {
    display: flex;
    flex-direction: row; /* Align items horizontally */
    justify-content: space-around; /* Space tabs evenly */
    padding: 0;
    list-style: none; /* Remove default list styling */
}

    .nav-tabs-horizontal li {
        margin: 0; /* Remove extra margin from list items */
    }

    .nav-tabs-horizontal a {
        display: block;
        padding: 10px 15px;
        text-align: center;
        text-decoration: none; /* Remove underline */
        border: 1px solid #ddd; /* Add a border for tabs */
        border-radius: 5px; /* Make them look like tabs */
        margin-right: 5px; /* Add space between tabs */
        color: #031b4e;
        font-weight: bold;
        background-color: #f9f9f9; /* Tab background */
        transition: background-color 0.3s ease, color 0.3s ease; /* Add hover effect */
    }

        .nav-tabs-horizontal a.active {
            background-color: #3f51b5; /* Hover effect */
            color: white; /* Active tab text color */
            border-color: #007bff; /* Active tab border color */
            font-weight: bold;
        }

        .nav-tabs-horizontal a:hover {
            background-color: #03a9f4; /* Active tab background */
            color: white; /* Active tab text color */
        }

#dtGrid {
    border: 1px solid black; /* Add a black border */
    border-collapse: collapse; /* Ensure borders do not double */
}

    #dtGrid th {
        border: 1px solid black; /* Add borders to cells */
        vertical-align: middle;
        background-color: #ededed;
    }


    #dtGrid td {
        border: 1px solid black; /* Add borders to cells */
        vertical-align: middle;
    }



.dtheaderstyle {
    border: 1px solid black !important;
    vertical-align: middle !important;
    background-color: #ededed !important;
    font-weight:bold;
}
 
.tableheadCss {
    font-weight: bold;
}

.AddBox {
   
    margin: 5px auto; /* Centers horizontally and adds vertical spacing */
    border: 5px double #4CAF50;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
}

.txtBold {
    color: #031b4e;
    font-weight: bold;
}