﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {    
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}
/* Table styles */
#tableHoldLastPay {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Arial', sans-serif;
    font-size: small;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px; /* Added border-radius for rounded corners */
    overflow: hidden; /* Ensures the content inside the table follows the rounded borders */
}

/* Table header styles */
table th {
    text-align: left;
    padding: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Table row styles */
table td {
    padding: 10px;
    text-align: left;
    font-size: 13px;
    border-bottom: 1px solid #ddd;
}

/* Alternate row colors */
table tr:nth-child(even) {
    /*background-color: #f9f9f9;*/
}

table tr:nth-child(odd) {
    /*background-color: #fff;*/
}

/* Row hover effect */
table tr:hover {
    background-color: #f1f1f1;
    cursor: pointer;
}

/* Specific styling for Remarks column */
table td:nth-child(7) {
    white-space: normal;
    word-wrap: break-word;
    max-width: 200px;
    color: #333;
    font-style: italic;
}

.hover-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

    .hover-card:hover {
        transform: scale(1.05);
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    }

.card-bord {
    border-right: 2px solid rgba(255, 255, 255, 0.3);
}

.d-link:hover {
    text-decoration: underline;
    color: #ffcccb !important;
}

.card-body {
    padding: 1.5rem;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 14px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}
.btn {
    font-size: 14px;
}
/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}


body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    font-family: 'Nunito', 'Segoe UI',Verdana,sans-serif !important;
   
}
h2 {
    color: #333131 !important;
}
/*for checkbox button*/
input.chk-btn {
    display: none;
}

    input.chk-btn + label {
        /*border: 1px solid grey;*/
        background-color: white;
        padding: 3px 4px;
        cursor: pointer;
        /*color: #007bff;*/
        color: black;
        /*border-color: #007bff;*/
        border-radius: 5px;
        font-size: 12px;
    }

    input.chk-btn:not(:checked) + label:hover {
        box-shadow: 0px 1px 3px;
    }

    input.chk-btn + label:active,
    input.chk-btn:checked + label {
        background: #eee;
        color: white;
        border-color: #007bff;
        background-color: #007bff;
    }
/*end*/
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}
.bootbox.modal {
    overflow-y: auto
}

.modal-dialog {
    overflow-y: auto !important;
}

.dropdown-menu {
    background-color: #343a40 !important;
    padding: 0px;
}

.dropdown-item {
    background-color: #343a40 !important;
    color: #b7b7b7 !important;
}

.navbar-nav li:hover > ul.dropdown-menu {
    display: block;
    background-color: #343a40 !important;
    color: white !important;
}

.dropdown-item:hover {
    color: white !important;
}

.dropdown-submenu {
    background-color: #343a40 !important;
    position: relative;
    color: white;
}

.dropdown-submenu > .dropdown-menu {
    background-color: #343a40 !important;
    top: 0;
    left: 100%;
    margin-top: -6px;
}

/* rotate caret on hover */
.dropdown-menu > li > a:hover:after {
    text-decoration: underline;
    transform: rotate(-90deg);
}
/*navbar dropdown menu slide transition*/
@media (min-width: 992px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}

@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform:translateY(0rem);
    opacity: 1;
  }
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slideIn {
  0% {

  }
  100% {
    -webkit-transform: translateY(0);
  }
  0% {
    -webkit-transform: translateY(1rem);
  }
}

.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}

/*Datatable search position*/
.pull-left {
    float: left !important;
}

/*Customized Scroll Bar*/

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    border: solid #bababa 1px;
}

/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 2px #a8a4a4;
}

/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #a8a4a4;
    -webkit-box-shadow: inset 0 0 6px #a8a4a4;
}
    ::-webkit-scrollbar-thumb:hover {
        -webkit-border-radius: 10px;
        border-radius: 10px;
        background: #a8a4a4;
        -webkit-box-shadow: inset 0 0 6px #a8a4a4;
        background: #484646;
    }

    ::-webkit-scrollbar-thumb:window-inactive {
        background: #a8a4a4;
    }

.menu-title {
    text-overflow: ellipsis;
    font-size: 15px;
    font-weight: bolder;
    white-space: nowrap;
    overflow: hidden;
    margin:2px;
}

.menu-description {
    font-size: 12px;
    margin: 2px;
    font-weight: bolder;
}

.card-menu {
    width: 12rem;
    height: 13.7rem;
    margin: 5px;
    box-shadow: #a4a1a1 2px 1px 5px 1px;
    -webkit-box-shadow: #a4a1a1 2px 1px 5px 1px;
    -moz-box-shadow: #a4a1a1 2px 1px 5px 1px;
}

.card-menu:hover {
    margin: 5px;
    box-shadow: #a4a1a1 1px 1px 5px 5px;
    -webkit-box-shadow: #a4a1a1 1px 1px 5px 5px;
    -moz-box-shadow: #a4a1a1 1px 1px 5px 5px;
    transition: ease 0.2s;
}

.menu-container {
    display: flex;
    flex-wrap: wrap;
    border: solid #d9d5d5 1px;
    border-radius: 5px;
    padding: 5px;
    margin-top: 2px;
    height: 500px;
    overflow: auto;
}

.menu-img {
    width: 100% !important;
    height: 100px;
    border-radius: 2px 2px 0px 0px;
    
}

.menu-price {
    color: dimgray;
    font-weight: bold;
    font-size:14px;
    margin:2px;
}
.menu-table {
    max-height: 300px;
    overflow: auto;
    border: solid #d9d5d5 1px;
    border-radius: 5px;
    font-size:13px;
    padding:5px;
}

.menu-table2 {
    max-height: 350px;
    border: solid #d9d5d5 1px;
    border-radius: 5px;
    font-size: 13px;
    padding: 5px;
}
.pos-img-prv {
    width: 130px;
    height: 130px;
    border-radius: 10px;
    border: solid #a8a4a4 1px;
    color: #a8a4a4;
}
.clearEmployee {
    background-color: white !important;
    color: #a4a1a1 !important;
    cursor:pointer;
}
.clearEmployee:hover {
    color: #333131 !important;
    cursor: pointer;
}

@media print {
    @page {
        margin: 0;
    }
    body {
        margin: 40px;
    }
}

/*th, td {
    white-space: nowrap;
}*/

/*div.dataTables_wrapper {
    margin: 0 auto;
}*/

div.container {
    width: 80%;
}

    .s-filter-list {
        margin-right:10%;
        position: absolute;
        width:100%;
        top: 100%;
        z-index: 1000;
        font-size: 1rem;
        color: #212529;
        text-align: left;
        list-style: none;
        background-color: #17a2b8;
        background-clip: padding-box;
        border: 1px solid rgba(0, 0, 0, 0.15);
        border-radius: 0.25rem;
    }

.s-filter-list.open {
    display: block;
    height: 100px;
    -webkit-transition: height, 0.5s linear;
    -moz-transition: height, 0.5s linear;
    -o-transition: height, 0.5s linear;
    transition: height, 0.5s linear;
}

.head-sm-font{
    font-size:12px;
    color:gray;
    font-weight: bold;
}
.notification {
    position: relative;
    display: inline-block;
}

.notification .badge {
    position: absolute !important;
    top: 0px !important;
    right: 0px !important;
    padding: 5px 7px !important;
    border-radius: 100% !important;
    background: #fe3838 !important;
    color: white !important;
    font-family:Nunito,'Segoe UI',Verdana;
    border:none !important;
}

#notifList {
    text-overflow: ellipsis;
    font-size: 12px;
    width:100%;

}
#notif-foot{
    font-size:15px!important;
}

.notif-update{
    width:100%!important;
}

#notif-container {
    overflow-y: auto;
    max-height: 450px;
}


.notif-item {
    border-top: solid 1px #696969 !important;
    padding: 5px !important;
    text-align:left !important;
}

.notif-unread {
    border-top: solid 1px #696969 !important;
    padding: 5px !important;
    cursor: pointer;
    background-color:#5b5b5b;
}

.notif-seeall {
    font-size: 12px !important;
    color: #f4ff62 !important;
    padding: 5px !important;
    cursor: pointer;
    text-align: right;
}

.notif-seeall a {
    color: #a4a1a1;
    text-decoration: none;
    cursor: pointer;
}

.notif-seeall a:hover {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.notif-item br{
  padding:0px !important;
  margin:0px !important;
}

.notif-item a {
    color: white;
    text-decoration: none;
    cursor: pointer;
    text-align: left !important;
}

.notif-description {
    font-size: 12px !important;
    text-align: left !important;
}

.notif-item a:hover {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.notif-item img {
  border-radius:100px;
}

.notif-item .time {
    float: right !important;
    color: gray !important;
    padding:0px !important;
    margin:0px !important;

}

.dropdown-item.user {
    display: flex;
    gap: 10px;
    align-items: center;
}
  /**/  
 @media only screen and (min-width: 320px) {
        .flip-clock-wrapper ul {
            position: relative;
            float: left;
            margin: 2px;
            width: 30px;
            height: 60px;
            font-size: 40px;
            font-weight: bold;
            line-height: 37px;
            border-radius: 6px;
            background: #000;
        }

            .flip-clock-wrapper ul li {
                z-index: 1;
                position: absolute;
                left: 4px;
                top: 4px;
                width: 100%;
                height: 100%;
                line-height: 57px;
                text-decoration: none !important;
            }

                .flip-clock-wrapper ul li a div div.inn {
                    position: absolute;
                    left: 0;
                    z-index: 1;
                    width: 100%;
                    height: 200%;
                    color: #ccc;
                    text-shadow: 0 1px 2px #000;
                    text-align: center;
                    background-color: #333;
                    border-radius: 6px;
                    font-size: 40px;
                }

        .flip-clock-dot {
            display: block;
            background: #323434;
            width: 10px;
            height: 10px;
            position: absolute;
            border-radius: 50%;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
            left: 8px;
        }

            .flip-clock-dot.top {
                top: 25px;
            }

            .flip-clock-dot.bottom {
                bottom: 40px;
            }

        #time-container {
            width: 350px;
            margin:auto;
        }

        .flip-clock-divider .flip-clock-label {
            position: absolute;
            top: -1.5em;
            right: -56px;
            color: black;
            text-shadow: none;
        }

        .flip-clock-divider.minutes .flip-clock-label {
            right: -58px;
        }

        .flip-clock-divider.seconds .flip-clock-label {
            right: -61px;
        }
    }

    @media only screen and (min-width: 768px) {

        #notif-container {
            width: 400px;
        }

        #time-container {
            width: 400px;
            height: 100px;
            margin: 10px;
        }

        #btn-time {
            width: 400px;
            height: 120px;
        }

        .flip-clock-dot.top {
            top: 30px;
        }

        .flip-clock-dot.bottom {
            bottom: 30px;
        }

        .flip-clock-wrapper ul {
            position: relative;
            float: left;
            margin: 2px;
            width: 20px;
            height: 90px;
            font-size: 40px;
            font-weight: bold;
            line-height: 47px;
            border-radius: 6px;
            background: #000;
        }

            .flip-clock-wrapper ul li {
                z-index: 1;
                position: absolute;
                left: 4px;
                top: 4px;
                width: 100%;
                height: 100%;
                line-height: 87px;
                text-decoration: none !important;
            }

                .flip-clock-wrapper ul li a div div.inn {
                    position: absolute;
                    left: 0;
                    z-index: 1;
                    width: 100%;
                    height: 200%;
                    color: #ccc;
                    text-shadow: 0 1px 2px #000;
                    text-align: center;
                    background-color: #333;
                    border-radius: 6px;
                    font-size: 70px;
                }

        .flip-clock-dot {
            display: block;
            background: #323434;
            width: 10px;
            height: 10px;
            position: absolute;
            border-radius: 50%;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
            left: 5px;
        }

        .flip-clock-divider .flip-clock-label {
            position: absolute;
            top: -1.5em;
            right: -56px;
            color: black;
            text-shadow: none;
        }

        .flip-clock-divider.minutes .flip-clock-label {
            right: -58px;
        }

        .flip-clock-divider.seconds .flip-clock-label {
            right: -61px;
        }

        .modal {
            font-family: 'Agency FB', sans-serif;
        }


        .full .modal-dialog {
            width: 100%;
            max-width: none;
            height: 100%;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            /* Additional styling for minimalist/professional feel */
            padding: 1rem;
            background-color: #f9f9f9; /* subtle background */
        }

        .full .modal-content {
            height: 97%;
            border: 0;
            border-radius: 8px; /* soft rounding for a modern look */
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); /* subtle depth */
            background-color: #ffffff; /* clean white background */
            transition: box-shadow 0.3s ease;
        }

        .full .modal-body {
            overflow-y: auto;
            /* Additional minimalist refinements */
            padding: 1.5rem;
            font-family: 'Segoe UI', Tahoma, sans-serif;
            font-size: 0.95rem;
            color: #333;
            line-height: 1.6;
        }

        /* Optional: Add smooth fade-in animation for polish */
        .full.fade .modal-dialog {
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .full.fade.show .modal-dialog {
            opacity: 1;
            transform: translateY(0);
        }

    }