html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


h1 {
    margin-top: 42px;
    margin-bottom: 32px;
    font-size: 1.5rem;
}

input, select {
    background-color: rgb(251,251,251);
    border-width:1px;
}


a {
    color: #7549a7;
}

    a:hover {
        color: #abadb0;
    }

.btn-primary {
    background-color: #7549a7;
    border: #7549a7;
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active {
        background-color: #3bb5a8 !important;
        border-color: #3bb5a8 !important;
        box-shadow: none !important; /* Optional: Removes Bootstrap's default focus glow */
    }



/* Add this to fix any issues with border-collapse in some browsers */
table {
    border-collapse: separate;
}

/* Custom form thead O-twee portal */

.table-docs td, .table-docs th {
    font-size: 14.4px;
}

.table-trans td, .table-trans th {
    font-size: 14.7px;
}

.sticky-header {
    position: sticky;
    top: 0;
    background-color: #fff; /* Use the background color of your choice */
    z-index: 100;
}

/* Info Table */

.info_table {
    width: 50%;
    border-collapse: collapse;
    margin: 20px 0;
}

    .info_table, .info_table th, .info_table td {
        border: 1px solid #dddddd;
    }

        .info_table th, .info_table td {
            padding: 7px;
        }

        .info_table th {
            background-color: #f2f2f2;
        }

        .info_table tr:hover {
            background-color: #f5f5f5;
        }


/* Icons */


.icon {
    height: 24px;
}

.icon_grey {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
}


/* Cards */

.card-link {
    display: block;
    height: 100%;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.card-title {
    color: #272e30;
}

.card {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Initial shadow */
    transition: box-shadow .2s; /* Transition for smooth shadow change */
    margin-bottom: 30px; /* Increased bottom margin for spacing between rows */
}

    .card:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Hover shadow */
    }

.card-icon {
    font-size: 1.5rem;
    color: #7549a7;
    margin-bottom: 12px;
}

.card-body {
    position: relative;
    padding-top: 50px; /* Top padding */
    padding-right: 45px; /* Right padding */
    padding-bottom: 45px; /* Bottom padding */
    padding-left: 45px; /* Left padding */
}

.card-col-md-4 {
    padding-left: 20px; /* Add left padding for columns */
    padding-right: 20px; /* Add right padding for columns */
}