/* Body background */
body {
    background: hsla(0, 0%, 100%, 0.55);
    backdrop-filter: blur(30px);
}

/* Card styles */
.app-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background: rgba(255, 255, 255, 0.2); /* Slight transparency */
    border-radius: 10px;
    backdrop-filter: blur(10px); /* Glass effect with blur */
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.2); 
    
    border: 1px solid rgba(255, 255, 255, 0.3); /* Border for the frosted look */
}

/* Card hover effect */
.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px 5px rgba(13, 110, 253, 0.4);
}

/* Thumbnail styling */
.app-thumbnail {
    height: 150px;
    object-fit: cover;
}

/* Card body layout */
.card-body {
    display: flex;
    flex-direction: column;
}

/* Description text handling */
.app-description {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Launch button */
.btn-launch {
    margin-top: auto;
}

/* Table image styling */
.table img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

/* Container width for larger screens */
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 80%;
    }
}

/* Footer link hover effect */
footer a:hover {
    text-decoration: underline;
}
@media (min-width: 992px) {
    .modal-lg, .modal-xl {
        --bs-modal-width: 1100px;
    }
}