        .link-list {
            list-style-type: none;
            /* Removes bullet points */
            margin: 0;
            padding: 0;
            display: block;
            /* Or 'flex' with 'flex-direction: column;' for a vertical list */
        }

        .link-list li {
            margin: 10px 0;
            /* Adds vertical margin for each list item */
        }

        .link-list a {
            display: inline-block;
            /* Change from block to inline-block */
            width: auto;
            /* Use auto to allow the size to adjust based on content, or set a specific width like 200px */
            padding: 10px 20px;
            /* Adjust padding to ensure buttons are big enough but not too large */
            text-decoration: none;
            /* Removes underline from links */
            color: #adaef3;
            /* Sets the text color */
            background-color: #233b7a;
            /* Sets the background color */
            border: 1px solid #6fa1e2;
            /* Adds a border around the link */
            border-radius: 5px;
            /* Rounds the corners of the border */
            text-align: center;
            /* Centers the text inside the button */
            margin: 5px;
            /* Adds a little margin around each button for spacing */
        }