﻿@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css");

.container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

/* hover- Heena*/
.deleteOnHover {
    visibility: hidden;
}

.dx-data-row:hover .deleteOnHover {
    visibility: visible;
}
/* hover- Heena*/

/*To Remove Exclamation mark for Error Mode */
.dx-invalid.dx-texteditor.dx-editor-outlined .dx-texteditor-input-container:after {
    content: none !important;
}
/*To Remove Exclamation mark for Error Mode */

/*Background COlour of lost focus record in Grid*/
.dx-datagrid-rowsview .dx-selection.dx-row:not(.dx-row-focused) > td {
    background-color: white;
}
/*Background COlour of lost focus record in Grid*/

/*Readonly Columns*/
.ColumnsReadOnly {
    background-color: #e9ecf3;
}
/*Readonly Columns*/

/*Embedded Datagrid in Drop Down for Search Panel*/
.embedded-datagrid .dx-toolbar .dx-texteditor {
    width: 100% !important;
}

.embedded-datagrid .dx-toolbar .dx-toolbar-after {
    padding-left: 0px;
    width: 100% !important;
}

.embedded-datagrid .dx-datagrid-search-panel {
    margin-left: 0px;
}
/*Embedded Datagrid in Drop Down for Search Panel*/

/*Segment1 Button Styles*/
.buttonStyle {
    color: #000000 !important;
    text-transform: uppercase;
    text-decoration: none;
    background: #ffffff;
    padding: 6px;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.4s ease 0s;
    border: 1px solid #d3d3d3 !important;
}

    .buttonStyle:hover {
        letter-spacing: 1px;
        -webkit-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
        -moz-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
        box-shadow: 5px 40px -10px rgba(0,0,0,0.57);
        transition: all 0.4s ease 0s;
    }

 /*for header Filters*/
.dx-datagrid .dx-header-filter {
    display: none !important;
}

.dx-datagrid td:hover .dx-header-filter {
    display: inline-block !important;
}
/*for header Filters*/

/*Segment1 Button Styles*/
/*Grid Header Left Alignment*/
/*.dx-column-indicators {
    float: unset !important;
}
.dx-cell-focus-disabled {
    text-align: left !important;
}*/
/*Grid Header Left Alignment*/

.dx-texteditor.dx-editor-outlined.dx-state-focused {
    background-color: blanchedalmond !important;
}


.focused-background {
    background-color: yellow; /* Replace 'yellow' with your desired color */
}


/*Side Panel -Accounting & Voucher Pages*/


.side-panel ul li {
    display: block;
    padding: 3% 3% 3% 3%;
    outline: none;
    box-shadow: inset 0 -1px rgba(0,0,0,0.2);
    color: #f3efe0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 100;
    font-size: medium;
    -webkit-transition: background 0.3s, box-shadow 0.3s;
    transition: background 0.3s, box-shadow 0.3s;
}

.side-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.side-panel {
    overflow-y: auto;
    height: 70vh;
    display: flex;
    flex-direction: column;
}

.side-panel ul li :hover {
    background: burlywood;
    box-shadow: inset 0 -1px rgba(0,0,0,0);
    color: black;
}

/*Side Panel -Accounting & Voucher Pages*/

/*I Button Css*/
.common-label {
    /* Add styles for the label here */
    margin-right: 10px; /* Example style */
    max-width: 300px;
    white-space: normal;
}

.common-img {
    margin-left: 10px; /* Ensures spacing between label and image */
    width: auto; /* Maintain aspect ratio */
    max-width: 20px; /* Example maximum width to ensure images are consistent */
    height: 20px; /* Set height to ensure consistency */
}