      /* Apply a full-height layout */
        html, body {
            height: 100%;
            margin: 0;
            font-family: Arial, sans-serif;
        }

        /* Flexbox for container */
        .container {
            display: flex;
            flex-direction: column;
            height: 100%; /* Full height */
        }

        /* Make the card body take up the full width */
        .card {
            display: flex;
            flex-direction: column;
            flex: 1; /* Take available space */
            margin: 0;
            height : 100%;
        }

        .card-header {
            /*background-color: #C3447A;*/
            background-color: #C06675;
            color: white;
            padding: 10px;
            text-align: center;
            font-size: 18px;
        }

        .card-body {
            text-align: center;
            justify-content: center;
            align-items: center;
            min-height: 1000px;
            /*flex-grow: 1; /* Ensure the body fills available space */
             /* Optional padding for better look */
        }

            .card-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            /*background-color: #f1f1f1;*/
             background-color: #C06675;
            padding: 10px;
            text-align: center;
            border-top: 1px solid #ddd;
        }

        .btn {
            display: inline-block;
            padding: 10px 20px;
            margin: 5px;
            background-color:#008CBA;
            color: white;
            border: block;
            border-radius: 5px;
            cursor: pointer;
             height : 35px;
        }

        .btn:hover {
            background-color: #0056b3;
        }

        /* Optional: Add responsiveness for smaller screens */
        @media (max-width: 600px) {
            .btn {
                width: 100%;
                margin: 5px 0;
            }
        }