/*min-width: fit-content;*/
*
{
    margin: 0;
    padding: 0;
        box-sizing: border-box;
}

.MyScreenRow
{
    display: flex;
    flex-direction:column;
}

.MyScreenCol
{
    flex: 1;
    margin: 3px;
    padding: 3px;
}
.DashSelect
{
    color: black;
    font-weight: normal;
    font-size: 10px;
/*    width: 120px;*/
/*    23 Sep 2024*/
/*    margin: 10px;*/
    width: 100px;
    background-color: white;
}

.noLabelBG
{
    width: 150px;
    font-size: var(--noLabelBG-font);
    font-weight: var(--noLabelBG-weight);  
}
.noLabelBG4Delete
{
    width: 150px;
    font-size: var(--noLabelBG-font);
    font-weight: var(--noLabelBG-weight);  
}
.mydropdown
{
    background-color: red;
    margin: 0;
    padding: 0;
}
.myErrorColor,.mySuccessColor
{
    box-sizing: border-box;
    font-weight: bold;
    background-color: antiquewhite;
    border: 1px solid #c0c0c0; 
    box-shadow: 5px 5px 5px black; 
    font-size: small;
    text-align: center;
}
.myErrorColor 
{
    color: red !important;
}
.mySuccessColor
{
    color: green !important;
}
.myblankrow
{
    margin-bottom: 5px;
}
.myMISText 
{
    font-size: small !important;
    width: 100px !important; /* Adjust width as needed */
    box-sizing: border-box; /* Ensures padding and border are included in the element's total width */
}

tr
{
    margin: 0 !important;
    padding: 0 !important;
}

.SabButtonMaster 
{
    box-sizing: border-box;

    font-size: var(--SaveButton-Font-Size);
    cursor: pointer;
    
    text-align: center;
    text-decoration: none;

    border: none;

    box-shadow: 0px 0px 5px black; 
    background: var(--SaveButton-Bg);
    color: var(--SaveButton-Color);
    border-radius: 10px;
    width: var(--SaveButtonWidth);
    height: var(--SaveButtonHeight);
}
.SabButtonMaster:hover 
{
    background: var(--SaveButtonHover-Bg);
    color: var(--SaveButtonHover-Color);
}

.CenterRow4CautionDays
{
    padding: 3px;
    margin: 3px;
    width: calc(100% - 3px - 3px);
}
.MyRow4CautionDays
{
    display: flex;
    
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    /*margin: 3px;
    padding: 3px;*/
    margin-bottom: 6px;
    width: 100%;
    height: auto;
    white-space: nowrap;
    border: 1px solid #c0c0c0;
    background-color: #002233;
    color: white;
    background-color: whitesmoke;
    color: black;
    
    /*overflow: auto;*/
    
}
.MyCol4CautionDays
{
    flex: 1;    
    margin: 3px;
    /*padding: 3px;*/
    width: auto;
    /*white-space: nowrap;*/
    /*min-width: fit-content;*/

}
.noLabelBG4CD
{
    width: 50px;
    font-size: 10px !important;
    font-size: small !important;
}
.Button4CautionDays
{
    text-align: center;
    text-decoration: none;

    border: none;

    box-shadow: 0px 0px 5px black; 
    
    
    border-radius: 3px;
    line-height: 2;
    width: 70px;
    font-size: 10px;
    font-size: small !important;
    
}

.excelcondition
{
    background-color:red; 
    color:white; 
    text-align:center; 
    font-weight:bold;
    padding:10px; 
    margin:10px;
    border: 1px solid #c0c0c0; 
    box-shadow: 5px 5px 5px black; 
}
@media only screen and (min-width: 1000px) 
{
    .MyScreenRow
    {
        flex-direction:row;
    }
    .MyRow4CautionDays
    {
            flex-direction:row;
    }

    
}

