
.main-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px;
    gap: 20px;
    align-content: flex-start;
    max-width: 1100px;
    margin:auto;
}

.tile {
/*    background: rgba(0, 0, 0, 0.1);*/
    backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 20px;
    width: 280px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.tile.large {
    width: 300px;
    height: 200px;
    order: 1;
}

.tile.small {
    width: 200px;
    height: 160px;
    order: 2;
}

.tile.small p {
    margin: 2px;
}

.tile.xsmall {
    width: 160px;
    height: 140px;
    order: 3;
}

.tile.xsmall p {
    margin: 0;
}

.tile-icon {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.tile:hover {
    transform: translateY(-10px) scale(1.08);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.tile h2, .tile h3 {
    margin: 0 0 10px 0;
}

.tile p {
    font-size: 14px;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .tile.large, .tile.small, .tile.xsmall {
        width: 90%;
    }
}

.break {
    flex-basis: 100%;
    width: 100%;
    height: 0;
    padding: 0;
    margin: 0;
    order: 1.5;
}

.tile.my-tasks {
    background-color: rgba(144, 238, 144, 0.7); /* pastel green */
}

.tile.dashboard-tile {
    background-color: rgba(255, 198, 92, 0.9); /* pastel orange */
}

.tile.new-breakdown {
    background-color: rgba(255, 182, 193, 0.9); /* pastel red/pink */
}
.tile.workorder-list {
    background-color: rgba(255, 218, 185, 0.9); /* pastel orange/peach */
}

.tile.scheduler-tile {
    background-color: rgba(255, 228, 196, 0.9); /* pastel bisque / light orange */
}

.tile.warehouse-management {
    background-color: rgba(104, 197, 199, 0.9); /* dark cyan/teal */
}

.tile.ai-reporting {
    background-color: rgba(255, 255, 204, 0.95); /* pastel yellow */
}

.tile.worker-editor {
    background-color: rgba(173, 216, 230, 0.9); /* pastel blue */
}
.tile.company-editor {
    background-color: rgba(216, 191, 216, 0.9); /* pastel purple */
}

.tile.ai-documentation-editor {
    background-color: rgba(240, 250, 180, 0.9); /* pastel lime/yellow */
}

.tile.asset-meters-tile {
    background-color: rgba(255, 229, 153, 0.9); /* pastel yellow-orange */
}

.tile-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}
.tile.xsmall.qr-code-tile {
    background-color: rgba(209, 236, 241, 0.95); /* light blue/cyan */
}

.tile.xsmall.user-role-editor-tile {
    background-color: rgba(255, 214, 165, 0.95); /* pastel peach / light coral */
}

.tile.xsmall.ai-agents-tile {
    background-color: rgba(221, 220, 255, 0.95); /* pastel lavender / light purple */
}