body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background: linear-gradient(to bottom right, red, black);
            color: white;
        }

.btn-tile {
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: .75rem;
            text-decoration: none;
            color: #212529;
            transition: all .2s ease;
            display: block;
        }

        .btn-tile:hover {
            background-color: #e9ecef;
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,.1);
        }

        .btn-tile-content {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .btn-tile .icon {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
        }

        .btn-tile img {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            max-height: 50%;
            margin-top: auto;
            margin-bottom: auto;
        }

        .btn-tile .label {
            font-size: .95rem;
            font-weight: 500;
            padding-top: .5rem;
        }