﻿.e-grid .e-checkbox-wrapper .e-frame.e-uncheck {
    border: 1px solid #808080; 
}

.min-width-dropdown  {
    min-width: 400px; /* Adjust as needed */
}

.e-grid .e-row[aria-selected='true'], .e-grid .e-row[aria-selected='true'] .e-rowcell {
    background-color: #cfcacaef !important; /* Change #ffd800 to your desired color */
    color: #000000; /* Change text color if needed */
}

.uppercase-input {
    text-transform: uppercase;
}

.hidden-header .e-gridheader {
    display: none;
}


/* base look */
.toast-base .e-toast {
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
    padding-inline: 12px 16px;
}

.toast-base .e-toast-danger::before,
.toast-base .e-toast-success::before {
    content: "";
    width: 4px;
    display: block;
    position: absolute;
    inset-block: 0;
    inset-inline-start: 0;
    border-radius: 4px 0 0 4px;
}

.toast-base .e-toast-danger::before {
    background: #f44336;
}

.toast-base .e-toast-success::before {
    background: #189370;
}

/* site.css or ErrorToast.razor’s <style> block */
.toast-base .e-toast-container {
    /* start in the middle of the viewport … */
    top: 50% !important;
    left: 50% !important;
    /* …then pull its own half-width/height back to centre it */
    transform: translate(-50%, -50%);
}