 .dashboard {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            justify-content: center;
            align-items: center;
        }

        .dashboard-link {
            text-align: center;
            padding: 20px;
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            transition: background-color 0.3s, transform 0.3s, border-color 0.3s, color 0.3s;
            cursor: pointer;
            font-size: 18px;
            font-weight: 700;
            border: 2px solid #555;
         /*   width: calc(100% - 40px); /* Adjusted width calculation to accommodate padding */
            width: auto; /* Adjusted width calculation to accommodate padding */
            white-space: nowrap; 
        }

        .dashboard-link:nth-child(odd) {
            background-color: #5adbb5;
            border-color: #5adbb5;
        }

        .dashboard-link:nth-child(even) {
            background-color: #5adbb5;
            border-color: #5adbb5;
        }

        .dashboard-link:hover {
            background-color: #5adbb5;
            border-color: #5adbb5;
            color: #fff;
            transform: scale(1.05);
        }

        .heading {
            text-align: center;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #333;
        }