.app-card {
    display         : flex;
    align-items     : center;
    background-color: #f8f9fa;
    border-radius   : .5rem;
    padding         : .5rem;
    box-shadow      : 0 .5rem 1rem rgba(0, 0, 0, .15);
}

.app-card .app-icon {
    flex-shrink  : 0;
    width        : 48px;
    height       : 48px;
    margin-right : 1rem;
    border-radius: .25rem;
}

.app-card .app-info {
    flex-grow: 1;
}

.app-card .app-info h5 {
    margin-bottom: 0;
}

.app-card .app-info p {
    font-size: .875rem;
}

.app-card .app-status {
    margin-left: auto;
}

.dropdown-toggle:after {
    margin-left: .5rem;
}

.icon-button {
    padding         : 0.375rem 0.75rem;
    /* Adjust padding to match your design */
    border-radius   : 0.375rem;
    /* Rounded corners */
    border          : 1px solid #ced4da;
    /* Border color */
    background-color: #ffffff;
    /* White background */
    display         : inline-flex;
    /* Flex container for alignment */
    align-items     : center;
    /* Center items vertically */
    gap             : 0.5rem;
    /* Space between icon and text */
}

.icon-button img {
    width : 24px;
    /* Icon size */
    height: 24px;
    /* Maintain aspect ratio */
}

.icon-button span {
    color: #000000;
    /* Text color */
}

.link-container {
    position: relative;
    /* This makes the absolute positioning of the popup relative to this container */
    display : inline-block;
    /* Adjust as needed */
}

.popup-links {
    position        : absolute;
    bottom          : 100%;
    /* Positions the popup above the anchor tag */
    left            : 0;
    background-color: white;
    box-shadow      : 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index         : 1000;
    /* Ensure it appears above other content */
    display         : none;
    /* Hide by default */
    padding         : 10px;
    border-radius   : 4px;
}

.popup-links a {
    display        : block;
    padding        : 5px 10px;
    text-decoration: none;
    color          : black;
}

.popup-links a:hover {
    background-color: #f0f0f0;
}