html, body {
    min-height: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Segoe UI", sans-serif;
    scrollbar-width: thin;
    scrollbar-color: #aaa transparent;
}
.indexPage{
    background-image: url('../images/Hanna-BlueBG.jpg'); /* Replace with your image URL */
    background-size: contain;
    background-position: bottom 0 right 20px;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

h5 {
    font-weight: normal;
}
/* Header Container */
.main-header {
    transition: all .12s ease-out;
    margin-left: 70px;
}

/*Navigation bar style*/
#navigation{
    display: flex;
    align-items: center;
    position: relative;
}

#navigation.expand {
    margin-left: 130px;
    transition: all .2s ease-out;
}

#navigation a, #navigation i{
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.navigation-bar, .custom-container{
    margin: auto;
}

.nav-pills {
    height: 30px;
}

.nav-item {
    align-content: center;
}

.customScroll{
    height: 235px;
    overflow-y: scroll;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
/*End Navigation Style*/

/*Sidebar navigation*/
#sidebar {
    width: 70px;
    min-width: 70px;
    height: 100%;
    z-index: 1000;
    transition: all .25s ease-in-out;
    background-color: #005eb8;
    display: flex;
    flex-direction: column;
    position: fixed;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
}

#sidebar.expand {
    width: 200px;
    min-width: 200px;
}

.toggle-btn {
    background-color: transparent;
    cursor: pointer;
    border: 0;
    padding: 1rem 1.3rem;
}

.toggle-btn i {
    font-size: 1.5rem;
    color: #FFF;
}

#sidebar span {
    font-size: 15px;
}

.sidebar-logo {
    margin: auto 0;
}

.sidebar-logo a {
    color: #FFF;
    font-size: 1.15rem;
    font-weight: 600;
}

#sidebar:not(.expand) .sidebar-logo,
#sidebar:not(.expand) a.sidebar-link span {
    display: none;
}

.sidebar-nav {
    padding: 2rem 0;
    flex: 1 1 auto;
}

.sidebar-link {
    padding: .625rem 1.370rem;
    color: #FFF;
    display: block;
    font-size: 0.9rem;
    white-space: nowrap;
    border-left: 3px solid transparent;
}

.sidebar-link i {
    font-size: 1.4rem;
    margin-right: 0;
}

#sidebar.expand .sidebar-link i {
    margin-right: .75rem;
}

#sidebar.expand .sidebar-link {
    border-radius: 5px;
}

a.sidebar-link:hover {
    background-color: rgba(255, 255, 255, 0.4);
    border-left: 3px solid #ffffff;
}

.sidebar-item {
    position: relative;
}

#sidebar:not(.expand) .sidebar-item .sidebar-dropdown {
    position: absolute;
    top: 0;
    left: 70px;
    padding: 0;
    min-width: 15rem;
    display: none;
}

#sidebar:not(.expand) .sidebar-item:hover .has-dropdown+.sidebar-dropdown {
    display: block;
    max-height: 15em;
    width: 100%;
    opacity: 1;
}

#sidebar.expand .sidebar-link[data-bs-toggle="collapse"]::after {
    border: solid;
    border-width: 0 .075rem .075rem 0;
    content: "";
    display: inline-block;
    padding: 2px;
    position: absolute;
    right: 1.5rem;
    top: 1.4rem;
    transform: rotate(-135deg);
    transition: all .2s ease-out;
}

#sidebar.expand .sidebar-link[data-bs-toggle="collapse"].collapsed::after {
    transform: rotate(45deg);
    transition: all .2s ease-out;
}

.activeSidebar{
    background-color: rgba(255, 255, 255, 0.4);
}

.toggle-btn-icon {
    position: absolute;
    right: -15px;
    top: 65px;
    background: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 100;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.collapsed .toggle-btn-icon {
    transform: rotate(180deg);
}
/*End Sidebar*/

.hanna-logo {
    width: 140px;
}

/* Dashboard Style*/
.dashboardNav {
    font-size: 20px;
    flex-wrap: wrap;
}
.dashboardActive{
    background-color:  #005eb8;
    color: #FFFFFF;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 8px;
    cursor: pointer;
}

.customInputsWidth{
    width: 300px;
}
.customSelectsWidth{
    width: 170px;
    border-radius: 0 5px 5px 0;
}
.customSelectsWidth2{
    width: 215px;
}

label.customLabelCode {
    border: 1px solid #dee2e6;
    border-radius: 5px 0 0 5px;
    display: grid;
    place-content: center;
    width: 130px;
}
.loginContainer{
    width: fit-content;
    margin: 0px auto;
    text-align: center;
}

.loginButton {
    background-color: #0056b3;
    color: white;
}

.registerButton{
    color: #005eb8;
    cursor: pointer;
}

.systemGrid
{
    display: grid;
    grid-template-columns: auto auto;
    width: fit-content;
    gap: 30px;
    margin: auto;
}

.instructions {
    justify-content: center;
}

.instructions li {
    list-style-type: circle;
}

.registerBody{
    padding: 25px;
    margin: 15px auto;
    border-radius: 20px;
    background-color: #005eb8;
    text-align: center;
    color: #FFFFFF;
}

.customDIV {
    padding: 20px;
    font-size: 25px;
    text-decoration: none;
    background-color: #005eb8;
    border-radius: 5px;
    width: 220px;
    text-align: center;
    color: white;
}
.customDIV:hover{
    background-color: #034b91;
}
/* End Dashboard Style*/

.newButton{
    color: #005eb8;
    border: 1px solid #005eb8;
    font-weight: 600;
}
.newButton:hover{
    background-color: #005eb8;
    color: white;
    border: 1px solid #005eb8;
}
/*Tables Style*/
table thead tr th{
    background-color: rgba(168, 168, 168, 0.14) !important;
    color: #606060 !important;
    align-items: baseline;
    vertical-align: middle;
    text-align: center!important;
}

.dataTables_filter {
    float: left !important;
    text-align: left;
}

#productsTable_wrapper .dataTables_filter,
#userTable_wrapper .dataTables_filter {
    float: right !important;
    text-align: right !important;
}

#usersDashboard_wrapper .dataTables_filter,
#usersDashboard_wrapper .dataTables_filter {
    float: right !important;
    text-align: right !important;
}

table thead tr:first-child th:first-child {
    border-top-left-radius: 7px;
}

table thead tr:first-child th:last-child {
    border-top-right-radius: 7px;
}

table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 7px;
}

table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 7px;
}

table tbody td {
    vertical-align: middle;
    text-align: center!important;
}
div#productsTable_filter{
    width: fit-content;
    float: right;
    margin-top: 10px;
}

.truncate {
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 440px;
}

caption > h3.text-center {
    color: black;
}

/*New ticket form styles*/

.subjectInput {
    width: 500px;
    font-weight: 500;
}

input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

#send-message-btn {
    white-space: nowrap;
    height: 100%;
}

.deleteButton {
    font-size: 21px;
    display: inline-flex; /* align with other buttons */
    align-items: center;
}

.fa-comments {
    font-size: 20px;
}
.fa-history {
    font-size: 20px;
}
.fa-user {
    font-size: 20px;
}

/*Chat for ticket function*/
.chat-container {
    background-color: white;
    max-width: 100%;
    margin: 16px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: calc(100vh - 133px);
}
.chat-box {
    padding: 10px;
    height: 395px;
    overflow-y: scroll;
    scrollbar-width: thin;
    flex: 1;
}
.ticket-chat {
    margin-bottom: 5px;
}

/*ticket-attach {*/
/*    max-width: 100%;*/
/*    height: 720px;*/
/*}*/

.chat-message {
    display: inline-block;
    margin-bottom: 10px;
    margin-left: 35px;
}

.mention {
    background: #e0f3ff;
    color: #0077cc;
    border-radius: 3px;
    padding: 2px 3px;
}

.mention-link {
    background: #e0f3ff;
    color: #0077cc;
    border-radius: 3px;
    padding: 0 3px;
    text-decoration: none;
}

.office-background {
    background-color: rgb(217 241 241);
    padding: 10px;
}

.agent-background {
    background-color: rgb(248, 249, 249);
    padding: 10px;
}

.internal-note {
    background-color: rgb(255, 243, 228);
    border-radius: 4px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(254, 214, 169);
    padding: 8px;
}

.ticket-link {
    color: #1F73B7;
    font-weight: 500;
    text-decoration: none;
}

.ticket-link:hover {
    text-decoration: underline;
}


.reply-message {
    background-color: rgba(19, 83, 150, 0.3);
    border-left: 4px solid #0056b3;
    padding: 5px;
}

.reply-message:hover {
    color: #646464;
}

.reply-message-highlight {
    box-shadow: 0 4px 10px rgba(58, 54, 54, 0.47);
    transition: box-shadow 0.5s ease;

}

.chat-message p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 0px;
}

.message-section {
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.message-container {
    align-items: center;
    gap: 10px;
}

.message-input input {
    width: 80%;
    border: none;
    border-radius: 5px;
}
.message-input button {
    padding: 10px;
    background-color: #a2b6cb;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}
.message-input button:hover {
    background-color: #798d9b;
}

#card-images {
    height: 65px;
}

.closed-test {
    align-items: center;
}

.closed-test p {
    margin: 0;
}

.follow-up {
    background-color: #005eb8;
    color: white;
    margin: 0px 10px;
}

.follow-up:hover {
    background-color: #3B71CA;
    color: white;
}

.ql-editor {
    height: 200px;
    /*background-color: rgb(243 234 191 / 19%);*/
    font-size: 15px;
}

.ql-container {
    height: 90%;
}

.ql-mention-list-container {
    position: absolute !important;
    visibility: visible !important;
    top: -515px !important;
    left: 130px !important;
}

.ql-mention-list {
    max-height: 565px !important;
    overflow-y: auto !important;
    scrollbar-width: thin !important;
}

#editor-container {
    background-color: rgb(243 234 191 / 19%);
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: pre-wrap;
    box-sizing: border-box;
}

.custom-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.custom-container2 {
    padding: 15px;
    min-height: 700px;
    margin-top: 50px;
}

#main-content {
    margin-left: 60px;
    transition: margin-left 0.25s ease-in-out;
}

#main-content.expand {
    margin-left: 190px;
}

.left-container {
    min-height: 100%;
    min-width: 200px;
    padding: 10px;
    max-width: 100%;
    border-radius: 10px;
    margin-left: 10px;
}

.left-container span {
    font-size: 15px;
    font-weight: normal;
}

.left-container-tickets {
    width: 350px;
    min-width: 330px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    height: calc(100vh - 79px);
    overflow-y: auto;
    scrollbar-width: thin;
}

.stale-row {
    background-color: #ffc100 !important; /* Bootstrap's yellow warning background */
}

.left-container-tickets span {
    font-size: 15px;
    font-weight: normal;
}

.right-container-ticket {
    padding: 0px 5px 25px;
    height: calc(100vh - 80px);
    width: calc(100vh - 50px);
}

#ticket-form > div > div.col-sm-12.col-md-9.flex-grow-1.right-container-ticket {
    padding: 0px 12px 25px;
}
/*Form design for ticket page*/

.form-container {
    min-width: 300px;
    background: rgba(255, 255, 255, 0.67);
    padding: 10px;
    border-radius: 12px;
}

label {
    font-weight: 600;
}

select, .dropdown button {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
}

select:focus, .dropdown button:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}
.select2 {
    overflow-y: auto;
    scrollbar-width: thin;
}
.select2-selection__rendered {
    /*line-height: 40px !important;*/
}
.select2-container .select2-selection--single {
    height: 35px !important;
}
.select2-selection__arrow {
    height: 30px !important;
}
.select2-search--inline {
    display: inline-block !important; /* or flex, depending on design */
}

.select2-search__field:placeholder-shown {
    width: 100% !important; /*makes the placeholder to be 100% of the width while there are no options selected*/
}

/*thin scrollbar*/
.select2-container .select2-results__options {
    max-height: 200px;         /* Optional: limit height */
    overflow-y: auto;          /* Make it scrollable */
    scrollbar-width: thin;     /* Firefox: thin scrollbar */
}

.dt-search {
    float: right;
    padding: 5px 10px;
}

.btn-submit {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 6px;
    width: 100%;
    transition: background 0.3s;
}

.btn-submit:hover {
    background-color: #0056b3;
}

.dropdown-menu {
    width: 100%;

}

.dropdown-item:hover {
    background-color: #007bff;
    color: white;
}

#ticket-form > div > div.flex-grow-1.right-container-ticket > div.chat-container.py-3 > div.py-2.text-center > div > ul
{
    position: absolute;
    inset: 0px auto auto 0px;
    margin: 0px;
    transform: translate(159px, 40px);
    width: fit-content;
}

#ticket-form > div > div > div.py-2.text-center > div > ul {
    position: absolute;
    inset: 0px auto auto 0px;
    margin: 0px;
    transform: translate(159px, 40px);
    width: fit-content;
}

.d-flex {
    display: flex;
}

.gap-2 {
    gap: 0.5rem;
}

a {
    color: inherit;
    text-decoration: none;
}

.message {
    background-color: rgb(255, 200, 61);
    width: 300px;
    height: 300px;
}

.message:focus {
    background-color: rgba(255, 200, 61, 0.08);
}

/*TicketInbox*/
.clickable-row {
    cursor: pointer;
    padding: 12px 15px;
    border-radius: 8px;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.clickable-row:hover {
    background: #005eb8;
    color: white;
    transform: translateY(-2px);
}

.ticket-content {
    flex: 1;
    display: flex;
}

.select2-container--default .select2-search--inline .select2-search__field {
    padding-bottom: 8px;
}

.form-control-file {
    width: 350px;
    background-color: #ffffff;
}

.bi-paperclip {
    font-size: 25px;
}

.bi-file-earmark-arrow-down {
    font-size: 18px;
}

/*History page*/
#historyPage {
    display: flex;
    justify-content: center;
}

.history-data {
    height: 696px;
    width: 50%;
    overflow-y: scroll;
    scrollbar-width: thin;
    padding: 10px;
}

.timeline-with-icons {
    border-left: 1px solid hsl(0, 0%, 90%);
    position: relative;
    list-style: none;
    padding-left: 20px;
}

.timeline-with-icons .timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-with-icons .timeline-icon {
    position: absolute;
    left: -40px;
    background-color: hsl(217, 88.2%, 90%);
    border-radius: 50%;
    height: 31px;
    width: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-with-icons img {
    border-radius: 50%;
}

.portfolio-card {
    max-width: 445px;
    margin: 1rem auto;
}

.card {
    border: none;
    margin-top: 10px;
}

.preview-card {
    margin-top: 3px;
}

.preview-card-body {
    height: 65px;
}

.internal-note .zd-comment {
    padding: 4px;
}

#updateForm {
    margin: 15px;
}

.card-body p {
    margin: 0.5rem;
}

.list-group-flush {
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#offcanvasRight{
    width: 470px;
    margin: 20px 20px 20px;
    border-radius: 10px;
}

#notificationButton {
    position: relative;
}

.notificationTickets {
    max-height: 600px;
    overflow: auto;
}

#notificationButton .showNotificationNumber {
    position: absolute;
    top: -16px;
    right: -22px;
    padding: 3px 5px;
    border-radius: 50%;
    font-size: 12px;
    background: red;
    color: white;
    display: none;
}

.modal-title {
    text-align: center;
    width: 100%;
    flex: 1;
}

#showNotification {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

#showNotification li {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    height: 140px;
}

#showNotification li:hover {
    background: linear-gradient(135deg, #dee2e6, #ced4da);
    transform: scale(1.02);
}

.customTitle {
    background-color: #005eb8;
    max-width: max-content;
    margin: auto;
    padding: 5px 15px;
    color: white;
    font-size: 20px;
    font-weight: bold;
}
#calendar {
    max-width: 1500px;
    margin: auto;
    padding: 20px;
}
#updateButton {
    font-weight: 500;
}

@media only screen and (max-width: 500px) {
    .leftMobile{
        text-align: justify!important;
        padding-left: 0!important;
    }
}

#responsiblesTable > tbody > tr > td:nth-child(3) > div > form
{
    margin: 0;
}

.userChanges {
    margin-left: 70px;
}

.customWidthRegister {
    width: 300px;
}

.customLabelCode{
    padding: 14px 5px;
    border: 1px solid #005eb8;
    border-radius: 5px 0 0 5px;
    background-color: #005eb8;
    color: white;
    white-space: nowrap;
}
.customLabelCode2{
    padding: 6px 5px;
    border: 1px solid #005eb8;
    border-radius: 5px 0 0 5px;
    background-color: #005eb8;
    color: white;
    white-space: nowrap;
}

@media (max-width: 521px) {
    .responsive-font {
        font-size: 15px;
    }
}

@media screen and (max-width: 1200px) {

    .item-grid{
        width: 180px;
        height: 80px;
        font-size: 25px;
    }
    .custom-text{
        padding: 0 15px;
    }
    .customMobile{
        padding: 0 15px;
    }
}
@media screen and (max-width: 500px) {
    .item-grid{
        width: 120px;
        height: 60px;
        font-size: 15px;
    }
    .site-name {
        text-align: center;
        font-size: 2.5rem;
    }

    .customDIV {
        padding: 15px 10px;
        font-size: 10px;
        width: 110px;
    }
}

@media screen and (max-width: 1078px) {
    .left-container-tickets {
        justify-content: center; /* Horizontally center the content */
        align-items: center; /* Vertically center the content */
        width: 100%; /* Ensure it takes up full width of its parent container */
    }
    .col-sm-8, .col-md-1 {
        width: 100% !important; /* Makes the column full width on mobile */
    }
}
@media screen and (max-width: 720px) {
    #title-icon {
        display: block !important;
        justify-content: center;
        align-items: center;
    }
    .subjectInput {
        width: -webkit-fill-available;
    }
    .right-container-ticket {
        margin-left: -2px;
        width: auto;
    }

    .left-container-tickets {
        margin-left: -10px;
        height: auto;
        margin-bottom: 5px;
    }

    #ticket-form > div > div.left-container-tickets {
        margin-left: -15px;
    }

    #ticket-form > div > div.col-sm-12.col-md-12.col-lg.left-container-tickets {
        margin-left: -3px;
    }

    #sidebar {
        width: 55px;
        min-width: 55px;
    }

    #navigation {
        margin-left: -15px;
    }

    .left-container {
        margin-left: 0;
    }

    .interactionButtons {
        justify-content: center;
    }

    #responsiblesLink {
        margin-bottom: 0;
    }

    div.dt-buttons {
        width: max-content;
    }

    #responsiblesTable_wrapper > div.dt-buttons.btn-group.flex-wrap {
        width: auto;
    }

    #ticket-form > div > div.col-sm-12.col-md-9.flex-grow-1.right-container-ticket {
        margin-left: -7px;
    }

    .table-responsive {
        overflow-x: unset;
    }

    .dt-search {
        float: none;
        text-align: center;
    }

    .ticketDetails {
        padding: 0;
    }

    #title-icon > div.d-flex.gap-2.pt-2.px-2 {
        justify-content: center;
    }

    .tickets-container {
        display: unset !important;
    }

    .ticket-tabs-wrapper {
        display: none !important;
    }

    .mobile-add-only {
        display: list-item !important;
    }

    .toast {
        margin-right: 20px !important; /* adjust as needed */
    }

    #allTickets_wrapper > div.dt-buttons.btn-group.flex-wrap {
        width: auto;
        margin-bottom: 0.5rem;
    }

    #message-options {
        width: 290px;
        height: 40px;
    }

    #defaultMessageSelect, #type {
        height: 40px;
    }

    .attach-text {
        display: none;
    }

    #offcanvasRight {
        left: -20px;
    }

}

@media (min-width: 390px) {
    #offcanvasRight {
        width: 387px;
        border-radius: 10px;
    }
}

.copy-email {
    cursor: pointer;
    color: #007bff;
}

.copy-email-wrapper {
    position: relative;
    cursor: pointer;
}

.tooltip-email {
    visibility: hidden;
    opacity: 0;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 5px;
    position: absolute;
    top: -30px;
    left: 0;
    z-index: 1;
    transition: opacity 0.3s ease;
    font-size: 12px;
}

.copy-email-wrapper.show-tooltip .tooltip-email {
    visibility: visible;
    opacity: 1;
}

.card-status-report {
    width: 435px;
}

.codeAnalyzeTable thead tr {
    background-color: rgba(0, 94, 184, 0.52);
}

.codeAnalyzeTable tbody tr td {
    background-color: rgba(0, 94, 184, 0.27);
}

#message-actions {
    display: none; position: absolute; background: #fff; border: 1px solid #ccc; border-radius: 5px; padding: 5px; box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.message-background img {
    height: 100px;
    border-radius: 3px;
}

.carousel-item img {
    height: 200px;
    max-width: 150px;
    border-radius: 3px;
}
.sidebarDashboard
{
    max-width: 300px;
}

.collapse-button {
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 1.8rem;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    cursor: pointer;
}

#description {
    height: 130px;
}

#preview-img img {
    height: 90px;
    border-radius: 2px;
}
ul, ol{
    margin: 0;
}
.chat-message ul li {
    list-style-type: disc;
}
.chat-message ol li {
    list-style-type: decimal;
}
