/* Input Group Styles */
.input-group-text {
    height: 30px;
    cursor: pointer; /* Makes the input group text clickable */
}

/* Navbar Styles */
.navbar-dark .navbar-brand {
    background-color: #0A1541; /* Dark blue background */
    color: #fff; /* White text color */
}

    .navbar-dark .navbar-brand:hover {
        background-color: #0A1541; /* Keeps the background color consistent on hover */
        color: #fff; /* Keeps the text color consistent on hover */
        text-decoration: underline; /* Adds underline on hover */
    }

.navbar-dark {
    background-color: #0A1541; /* Dark blue background for the navbar */
    color: #fff; /* White text color */
}

/* Custom Navbar Styles */
.navbar-custom {
    background-color: #0A1541; /* Dark blue background */
    color: #fff; /* White text color */
}

    .navbar-custom .navbar-brand {
        color: #fff; /* White text color for the brand */
    }

        .navbar-custom .navbar-brand:hover {
            text-decoration: underline; /* Adds underline on hover */
        }

/* Hamburger Menu Styles */
.navbar {
    position: relative;
    background: #0A1541;
    padding: 0.5rem 1rem;
    z-index: 1100;
}

.navbar-toggler {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.25rem 0.75rem;
}

    .navbar-toggler:focus {
        outline: none;
    }

.navbar-toggler-icon {
    display: inline-block;
    font-size: 2rem;
    line-height: 1;
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 1200;
    border-radius: 0 0 4px 4px;
}

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-menu li {
        border-bottom: 1px solid #eee;
    }

        .nav-menu li:last-child {
            border-bottom: none;
        }

    .nav-menu a {
        display: block;
        padding: 0.75rem 1rem;
        color: #0A1541;
        text-decoration: none;
        font-weight: 500;
    }

        .nav-menu a:hover {
            background: #f8f9fa;
            color: #006EEF;
        }

.navbar-dark .nav-link {
    color: #fff !important;
}

    .navbar-dark .nav-link:focus,
    .navbar-dark .nav-link:hover {
        color: #ddd !important;
        text-decoration: underline;
    }

/* Button Styles */
.btn {
    background-color: #006EEF; /* Primary blue background */
    color: white; /* White text color */
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    border: none; /* Removes border */
}

    .btn:hover {
        background-color: #334CA0; /* Darker blue on hover */
        color: white; /* Keeps text color white on hover */
    }

/* Card Styles */
.card {
    border: none; /* Removes border */
    box-shadow: none; /* Removes shadow */
    background-color: #f3f3f6 !important; /* Light gray background */
}

.card-body {
    padding: 0.5rem 0.25rem; /* Reduce padding inside the card */
}

.card .stretched-link {
    color: #006EEF; /* Primary blue for links */
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; /* Consistent font family */
    font-size: 14px; /* Adjusts font size */
}

.h3, h3 {
    font-size: 24px !important; /* Override the media query */
}

/* Vault Listing Styles */
.vaults .row {
    gap: 8px; /* Adjusts the gap between cards */
}

.vaults .col-md-3 {
    margin-bottom: 8px; /* Ensures consistent spacing between rows */
}

/* Body Styles */
body {
    padding-top: 20px; /* Adjusts padding to account for the navbar height */
    background-color: #f3f3f6; /* Light gray background */
}

/* Vault Icon Styles */
.vault-icon-1 {
    background: url('../Images/vault_icon_blue.png') no-repeat transparent; /* Adds a vault icon */
    padding-left: 35px; /* Adds spacing to the left of the icon */
    height: 55px; /* Sets the height of the icon */
}

.table.outline-only {
    border: 2px solid #dee2e6; /* or any color you prefer */
    border-collapse: separate;
    border-spacing: 0;
}

    .table.outline-only th,
    .table.outline-only td {
        border: none !important;
    }

.info-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: none;
    color: #006EEF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: none; /* Remove default border */
    box-shadow: none;
    outline: none;
    padding: 0;
    margin-left: 0.5rem;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

    .info-circle:hover,
    .info-circle:focus {
        background: #e6f0fa; /* subtle blue highlight on hover */
        color: #0a1541; /* darker blue on hover */
    }

    .info-circle.active {
        background: #e6f0fa;
        color: #0a1541;
        font-weight: bold;
        text-decoration: underline;
        border: none;
    }

.center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-height: 90%;
}
