﻿@import url("variables.css");
@import url('https://fonts.googleapis.com/css2?family=Encode+Sans+Expanded:wght@300;400;500;600;700;800&family=Inter:slnt,wght@-10..0,100..900&family=Poppins:wght@100;200;300;400;500;600;700;800&family=Roboto:wght@100;300;400;500;700&display=swap');

body{

    font-size: 15px;
    font-family: "Inter", Helvetica, sans-serif !important;
}

a {
    color:inherit;
}

cursor-pointer{
    cursor:pointer;
}

.ellipsis {
    max-width: 130px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}


.title {
    color: #2c3e50 !important;
    margin-bottom: 20px;
    text-align: start;
    font-weight: 600;
    border-left: 7px solid var(--btn-primary);
    padding-left: 9px;
}

.container {
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(30, 32, 37, 0.12);
    border-radius: 1rem;
    padding: 3rem;
}

.container-fluid.users,
.container-fluid.service-updates,
.container-fluid.machines,
.container-fluid.branches{
/*    background-color: #fff;
    box-shadow: 0 5px 10px rgba(30, 32, 37, 0.12);
    border-radius: 1rem;
    padding: 3rem;*/
}

.text-danger {
    color: var(--color-danger) !important;
}

.text-warning{
    color:var(--color-warning) !important;
}

.bg-success {
    background-color:var(--color-success) !important;
}

.bg-danger {
    background-color: var(--color-danger) !important;
}

.warning-delete-icon,
.warning-icon{
    font-size:var(--fs-warning-icon);
}


.delete-icon-container,
.warning-icon-container{
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.delete-icon-container {
    background-color: #fccbc7;
}
.warning-icon-container {
    background-color: #FFF5E7;
    color: #B26000
}

.result-modal-body {
    text-align: center;
}

.result-modal-icon {
    font-size: 4rem;
}

.result-modal-title {
    font-size: 1.25rem;
    margin-top: 0.5rem;
    font-weight: 700;
}

.result-modal-message {
    font-size: 1rem;
    margin-top: 0.25rem;
    margin-bottom: 1.5rem;
}

.result-modal-footer {
    border-top: none;
    padding: 1rem 1.5rem;
    text-align: center;
    background-color: #fff;
}

.result-modal-button {
    border-radius: 20px;
    padding: 0.8rem 2.5rem;
    font-weight: 700;
    color: #fff;
}

.table-rounded {
    border-radius: 15px;
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.table-rounded {
    border-radius: 0;
}

    .table-rounded tr:first-child th:first-child {
        border-top-left-radius: 15px;
    }
    .table-rounded tr:first-child th:last-child {
        border-top-right-radius: 15px;
    }

    .table-rounded tr:last-child td:first-child {
        border-bottom-left-radius: 15px;
    }

    .table-rounded tr:last-child td:last-child {
        border-bottom-right-radius: 15px;
    }

.table-rounded thead tr {
    background-color: var(--color-table-head);
    color: white;
}

.table-rounded tbody tr {
    transition: background-color 0.15s ease-in-out;
}

table-rounded tbody tr:hover {
    background-color: #efefef;
}

.table-blue-header thead tr {
    background-color: var(--color-table-head);
    color: white;
}

td {
    vertical-align: middle;
}

.users-table th {
    font-size: 14px;
}

.btn-action {
    padding: 8px 14px;
    font-size: 0.9rem;
    background-color: #F9F9F9;
    font-weight:500;
}
    .btn-action i {
    margin-left:5px;
    font-size:0.8rem;
    }
    .btn-action:hover {
        background-color: #E9F3FF;
        color: #1B84FF;
    }


/*LOGIN */

.bg-login,
.bg-register,
.bg-forget-password{
    background-image: url(../../images/Login-bgs/login-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display:flex;
    align-self:stretch;
    background-color:var(--primary-color);
    transition: background-color 0.3s;
}



.overlay {
    opacity: 1;
    /*    
    background-color: rgba(221, 162, 44,0.5);
        background-color: rgba(243, 243, 249,0.4); */
    /* background-color: rgb(243 243 249 / 53%); */
    background-color: rgba(44, 41, 75,0.4);
    height: 100%;
    width: 100%;
    flex-grow: 1;
}


.btn-login,
.btn-register,
.btn-forget-password {
    background-color: var(--primary-color);
    color: #fff;
    transition: background-color 0.3s;
}
    .btn-login:hover,
    .btn-register:hover,
    .btn-forget-password:hover {
        background-color: #1d1a3e;
    }

.login-area {
    background-color: var(--primary-color);
}

.error-highlight {
    font-weight: bold;
    color: #dc3545 !important; /* Red color */
    background-color: #f8d7da; /* Light red background */
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #f5c6cb;
}

