
.apps-container {
    width: 100% !important;
    max-width: 1830px !important;
    padding: 40px 0;
    margin: 0 auto !important;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}
@media (max-width: 1200px) {
    .apps-container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (max-width: 900px) {
    .apps-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 600px) {
    .apps-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 400px) {
    .apps-container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.app-item {
    background-image: linear-gradient(135deg, #f9f9f9 0%, #ddd 100%);
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 20px;
    width: 100%;
    height: 100%;
	min-height: 280px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    display: block;
    color: inherit !important;
    text-decoration: none !important;
}

.app-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-image: linear-gradient(135deg, #ddd 0%, #f9f9f9 100%);
}

.app-image {
    width: 60px;
    height: 60px;
    min-width: 60px;
	overflow: hidden;
    border-radius: 8px;
    padding: 6px;
    margin-bottom: 15px;
}
.app-background-blue {
    border: 1px solid rgba(0, 108, 216, 0.2);
    background-image: linear-gradient(
        to bottom right, 
        rgba(0, 108, 216, 0.15),
        rgba(0, 108, 216, 0.05)
    );
}
.app-background-green {
    border: 1px solid rgba(0, 102, 43, 0.2);
    background-image: linear-gradient(
        to bottom right, 
        rgba(0, 102, 43, 0.15),
        rgba(0, 102, 43, 0.05)
    );
}
.app-background-black {
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-image: linear-gradient(
        to bottom right, 
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.05)
    );
}
.app-background-gold {
    border: 1px solid rgba(239, 184, 16, 0.2);
    background-image: linear-gradient(
        to bottom right, 
        rgba(239, 184, 16, 0.15),
        rgba(239, 184, 16, 0.05)
    );
}
.app-background-purple {
    border: 1px solid rgba(128, 0, 128, 0.2);
    background-image: linear-gradient(
        to bottom right, 
        rgba(128, 0, 128, 0.15),
        rgba(128, 0, 128, 0.05)
    );
}

.app-title {
    font-size: 1.3rem !important;
    margin-top: 30px !important;
    margin-bottom: 10px !important;
    color: #333;
}

.app-description {
    font-size: 1rem !important;
    color: #666;
}