/* General Styles */
body {
    background-color: #212529;
    color: #f8f9fa;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
}

.jumbotron .container {
    position: relative;
    z-index: 1;
}

.jumbotron .display-4 {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Text shadow for readability */
    font-weight: bold;
}

.jumbotron .lead {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Text shadow for readability */
    font-weight: normal;
}

.features-icon {
    font-size: 1.5em;
    color: #007bff;
}

.testimonial {
    font-style: italic;
}

.footer {
    background-color: #343a40;
    color: white;
}

    .footer a {
        color: white;
        text-decoration: none;
    }

        .footer a:hover {
            text-decoration: underline;
        }

/* Card transition */
.card {
    transition: transform 0.2s;
    background-color: #343a40;
    color: white;
}

    .card:hover {
        transform: scale(1.05);
    }

.card-body h3, .card-body h5 {
    margin-bottom: 20px;
}

/* Adjust spacing to push footer down */
.container.my-5 {
    margin-bottom: 100px; /* Adjust this value as needed */
}

/* Navbar dropdown styling */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link:focus {
        color: rgba(255, 255, 255, 1);
    }

.navbar-dark .navbar-nav .dropdown-menu {
    background-color: #343a40;
    border-color: rgba(0, 0, 0, 0.15);
}

    .navbar-dark .navbar-nav .dropdown-menu .dropdown-item {
        color: rgba(255, 255, 255, 0.8);
    }

        .navbar-dark .navbar-nav .dropdown-menu .dropdown-item:hover,
        .navbar-dark .navbar-nav .dropdown-menu .dropdown-item:focus {
            color: rgba(255, 255, 255, 1);
            background-color: rgba(255, 255, 255, 0.1);
        }

/* Fix for dropdown menu going off the edge */
.navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto;
}

/* Custom HR Style */
.custom-hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.75), rgba(0, 0, 0, 0));
    margin: 1.5rem 0; /* Adjust the margin as needed */
}

/* Keep icons and text on the same line */
.dropdown-item-text {
    display: flex;
    align-items: center;
}

.dropdown-item-text i {
    margin-right: 8px; /* Adjust spacing between icon and text */
}

/* Increase the width of the dropdown menu */
.navbar-nav .dropdown-menu-right {
    min-width: 300px !important; /* Adjust the width as needed */
}

/* Ensure text items within the dropdown stay on one line */
.dropdown-item-text {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Make sure the tenant ID line breaks properly */
.dropdown-item-text.long-text {
    white-space: normal !important;
    word-break: break-word !important;
}

/* Logic for copy and paste user info buttons*/

.dropdown-item-text-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
}

.copy-btn {
    padding: 0;
    border: none;
    background: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.copy-btn:hover {
    color: rgba(255, 255, 255, 1);
}

.dropdown-item-text {
    flex-grow: 1;
}

.dropdown-item-text-wrapper {
    display: flex;
    align-items: center;
}

.dropdown-item-text-wrapper .vertical-line {
    width: 1px;
    height: 1.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
}


.no-wrap {
    white-space: nowrap;
}


.large-icon {
    font-size: 3rem; /* Adjust the size as needed */
    margin-bottom: 1rem;
}
