/* Dashboard Tiles */
.tile {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e5e7eb;
}

.tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.tile-icon {
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.bg-blue-500 { background-color: #3b82f6; }
.bg-green-600 { background-color: #059669; }
.bg-purple-500 { background-color: #8b5cf6; }
.bg-gray-500 { background-color: #6b7280; }

.tile-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #111827;
}

.tile-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.4;
}

/* Auth Page overrides */
body.auth-body {
    background-color: #f9fafb;
}
