﻿
.core-button {
    width: 100%;
    display: inherit;
    align-items: inherit;
    justify-content: inherit;
    padding: 6px 16px;
    font-size: 1rem;
    min-width: 64px;
    box-sizing: border-box;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    line-height: 1.75;
    text-transform: none;
    padding: 11px 16px;
}

.light-blue-button {
    color: #fff;
    box-shadow: none;
    background-color: #0C72CE;
    border-radius: 100px;
    border: 0;
}

    .light-blue-button:hover {
        background-color: #023A70;
    }

.dark-blue-button {
    color: #fff;
    box-shadow: none;
    background-color: #023A70;
    border-radius: 100px;
    border: 0;
}

    .dark-blue-button:hover {
        background-color: #0C72CE;
    }


.small-title {
    font-weight: 500;
    margin-bottom: 0.8rem;
    text-align: left;
}

.input-override {
    border-color: black;
    text-align: left !important;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 20px;
    padding-right: 20px;
}

.table-override {
    border-collapse: collapse;
    border-spacing: 0;
    border-radius: 10px; /* Adjust the value as needed for the desired roundness */
    overflow: hidden; /* Ensure overflow is hidden to properly display rounded corners */
    text-align:left !important;
}

    .table-override th {
        background-color: #353636;
        color: white;
    }

    .table-override th,
    .table-override td {
        padding:15px;
        border: none; /* Remove borders from table header cells and table data cells */
    }


.back-arrow {
    margin-right: 12px;
    cursor: pointer;
}
