﻿@font-face {
    font-family: 'Roboto_SemiCondensed-Regular'; /*a name to be used later*/
    src: url('fonts/Roboto/static/Roboto_SemiCondensed-Regular.ttf'); /*URL to font*/
}

@font-face {
    font-family: 'Roboto-ExtraBoldItalic'; /*a name to be used later*/
    src: url('fonts/Roboto/static/Roboto-ExtraBoldItalic.ttf'); /*URL to font*/
}

@font-face {
    font-family: 'Roboto_SemiCondensed-Light';
    src: url('fonts/Roboto/static/Roboto_SemiCondensed-Light.ttf'); /*URL to font*/
}

@font-face {
    font-family: 'Roboto-ExtraBold';
    src: url('fonts/Roboto/static/Roboto-ExtraBold.ttf'); /*URL to font*/
}

body {
    font-family: 'Roboto_SemiCondensed-Light' !important;
    font-size: 0.85rem;
}

.extraBold {
    font-family: 'Roboto-ExtraBold' !important;
}

.extraBoldItalic {
    font-family: 'Roboto-ExtraBoldItalic' !important;
}

.semiCondensedRegular {
    font-family: Roboto_SemiCondensed-Regular;
}

.bigFont{
    font-size: 1.8rem;
}

.regFont{
    font-size: 0.85rem;
}

.uppercase {
    text-transform: uppercase;
}

.border-white-2px{
    border: 2px white solid;
}

.editable {
    background-color: palegreen;
}

.navbar-dark {
    background-color: rgb(44, 44, 44) !important;
    opacity: 0.8;
}

/* Using transform property */
input[type="checkbox"] {
    transform: scale(1.5); /* Adjust the scale value as needed */
    margin: 10px; /* Optional: Add spacing */
}

.success_label {
    text-transform: uppercase;
    background-color: #50C878;
    color: white;
    padding: 3px 5px;
    margin: 0 5px 2px 0;
    border-radius: 3px;
    display: inline-block;
}

.exists_label {
    text-transform: uppercase;
    background-color: darkorange;
    color: white;
    padding: 3px 5px;
    margin: 0 5px 2px 0;
    border-radius: 3px;
    display: inline-block;
}

.failed_label {
    text-transform: uppercase;
    background-color: red;
    color: white;
    padding: 3px 5px;
    margin: 0 5px 2px 0;
    border-radius: 3px;
    display: block;
}

.text-white {
    color: white;
}

.navbar-nav {
    --bs-nav-link-color: white;
}

.form-select {
    font-size: inherit;
}

.btn {
    font-size: inherit;
}

.account-link {
    color: white;
    text-decoration: none;
    background-color: dodgerblue;
    font-size: 0.9em;
    padding: 3px 8px;
    border-radius: 5px 0 0 5px;
}

.logout-link {
    color: white;
    text-decoration: none;
    background-color: orangered;
    font-size: 0.9em;
    padding: 3px 8px;
    border-radius: 0 5px 5px 0;
}

.radius-3px {
    border-radius: 3px;
}

.radius-5px {
    border-radius: 5px;
}

.radius-10px {
    border-radius: 10px;
}

.row-flex {
    display: flex;
    flex-wrap: wrap;
}

.content {
    height: 100%;
    padding: 15px 25px 5px;
}

.summary-col {
    margin-bottom: 20px;
}

.outbound {
    background: #483C46;
    color: #fff;
}

.error {
    background: red;
    color: #fff;
}

.pending {
    background: goldenrod;
    color: #fff;
}

.rejected {
    background: #82204A;
    color: #fff;
}

.completed {
    background: blue;
    color: #fff;
}

.consol {
    background: silver;
    color: #fff;
}

.link {
    color: #fff;
    text-decoration: none;
}

    .link:hover {
        color: #ddd;
        text-decoration: underline;
    }