.fixed-width-btn {
    width: 240px;              /* Adjust width to fit your longest text */
    height: 40px;
    font-size: 16px;
    white-space: nowrap;       /* Prevent text from wrapping */
    overflow: hidden;          /* Hide overflow text */
    text-overflow: ellipsis;   /* Show ... if text is too long */
    text-align: center;
    display: block;
    margin-bottom: 10px;       /* Space between buttons */
}
/* assets/styles.css */
@font-face {
    font-family: 'Poppins';
    src: url('/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/Poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/Poppins/Poppins-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('/Poppins/Poppins-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

body, h1, h2, h3, p, div {
    font-family: 'Poppins', sans-serif;
}