html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

@media (min-width: 1400px) {
    .container {
        max-width: 100% !important;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html, body {
    height: 100%;
    width: 100%;
    /*overflow: hidden;*/
    margin: 0;
    padding: 0;
}

.custom-btn {
    width: 80px;
    margin: 0;
    display: inline-block;
    text-align: center;
    border: none;
    color: white; /* Ensures text is visible */
}

.custom-btn2 {
    width: 100px;
    height: 30px;
    margin: 0;
    display: inline-block;
    text-align: center;
    border: none;
    color: white; /* Ensures text is visible */
}

.btn-fetch {
    background-color: #0090D3;
}

.btn-excel {
    background-color: green;
    margin-top: 2px;
}

.top-side {
    flex: 0 0 20%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.bottom-side {
    flex: 1;
    padding-top: 20px;
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
}

.split-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Prevent content from expanding outside */
    box-sizing: border-box;
    padding: 10px;
    border: solid;
    border-width: 1px;
    border-radius: 10px;
    border-color: lightgrey;
    margin: 10px;
    background-color: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.split-area-top {
    flex: 1;
    display: flex;
    overflow: hidden; /* Prevent content from expanding outside */
    box-sizing: border-box;
    padding: 10px;
    border: solid;
    border-width: 1px;
    border-radius: 10px;
    border-color: lightgrey;
    margin: 10px;
    background-color: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Media query for responsive design */
@@media (max-width: 768px) {
    .top-side {
        flex-direction: column;
    }

    .split-area {
        flex: 1 1 100%;
        height: auto;
    }
}

.e-grid .e-icon-filter::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #007bff; /* Set the icon color */

    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M1.5 1.5A.5.5 0 0 1 2 1h12a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.128.334L10 8.692V13.5a.5.5 0 0 1-.342.474l-3 1A.5.5 0 0 1 6 14.5V8.692L1.628 3.834A.5.5 0 0 1 1.5 3.5zm1 .5v1.308l4.372 4.858A.5.5 0 0 1 7 8.5v5.306l2-.666V8.5a.5.5 0 0 1 .128-.334L13.5 3.308V2z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M1.5 1.5A.5.5 0 0 1 2 1h12a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.128.334L10 8.692V13.5a.5.5 0 0 1-.342.474l-3 1A.5.5 0 0 1 6 14.5V8.692L1.628 3.834A.5.5 0 0 1 1.5 3.5zm1 .5v1.308l4.372 4.858A.5.5 0 0 1 7 8.5v5.306l2-.666V8.5a.5.5 0 0 1 .128-.334L13.5 3.308V2z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.e-input-group {
    border-radius: 5px !important;
    border: 1px solid lightgray !important;
}
