html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.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 {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.parent-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.button-container {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}

    .button-container .e-btn {
        margin-left: 10px;
    }

#saveAddBtn {
    background-color: #ff6f00;
    color: white;
}

#saveBtn {
    background-color: #4caf50;
    color: white;
}

#cancelBtn {
    background-color: #f44336;
    color: white;
}

/* Radio button styling */
.radio-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.radio-label {
    margin-right: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

    .radio-label input[type="radio"] {
        margin-right: 5px;
    }

.e-footer-content .e-btn.e-primary.e-flat {
    padding: 8px 21px !important;
    border-radius: 10px !important;
}
.e-footer-content .e-btn.e-flat {
    padding: 8px 21px !important;
    border-radius: 10px !important;
}
/* Example: Changing the Excel export icon using CSS */
.e-grid .e-excelexport:before {
    font-family: FontAwesome;
    content: "\f019";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
   font-size:18px;
    color:white;
}
#Grid_excelexport {
    border: 2px solid orangered !important;
    background-color: orangered !important;
    color: white;
}
.e-tbar-btn-text {
    color: #fff !important;
    font-weight: bold;
}