:root {
    --primarycolor:#191c6e;
    --secondarycolor:#F16905;
    --bordercolor:#CCCCCC;
}

html, body {
    font-family: 'Inter', sans-serif;
    /*background-color: #FBFCFE;*/
	background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
    margin: 0;
    padding: 0;
	-webkit-font-smoothing: antialiased;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: inherit;
}

.material-symbols-sharp {
    font-variation-settings:
    'FILL' 0,
    'wght' 200,
    'GRAD' 0,
    'opsz' 24
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: transparent;
    color: #505050;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.icon-btn:hover {
    background-color: var(--primarycolor);
    color: white;
}

.btn2 {
    background-color: transparent;
    color: #505050;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn2:hover {
    background-color: var(--primarycolor);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.opt_ship {
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.opt_ship:hover {
    background-color: var(--primarycolor);
    color: white;
}

a {
	text-decoration: none;
	color:inherit;
}

input[type="search"],
input[type="date"],
input[type="text"],
input[type="password"] {
    height: 32px;
    padding: 4px 10px;
    font-size: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 4px;        
    background-color: white;
    vertical-align: middle;
    color: #505050;
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
/*
input[type="number"] {
  -moz-appearance: textfield;
}
*/

.style-textbox2 {
    height: 32px;
    border: none;
    padding: 5px;
    background-color: white;
    color: #505050;
}

.style-dropdown1 {
    height: 32px;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    padding: 5px;
    background-color: white;
    color: #505050;
    cursor: pointer;
}

.style-dropdown2 {
    height: 30px;
    border: none;
    padding: 5px;
    background-color: white;
    color: #505050;
    cursor: pointer;
    font-size: 15px;
    width: 100%;;
}

/* table data grid */
table.datagrid {
    display: table;
    border-collapse: collapse;
    width: 100%;
    font-size: 14px;
    color: #505050;
}
table.datagrid thead, table.datagrid tbody {
    float: left;
	width: 100%;
}

table.datagrid th {
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box;
    padding: 4px;
    background-color: #F0F0F0;
	font-weight: normal;
    border-bottom:1px solid #CCCCCC;
}

table.datagrid tbody {
    overflow-y:scroll;
}
table.datagrid tr {
    width: 100%;
    display: table;
    text-align: left;
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box; 
}

table.datagrid th.dgSpacer1 {
    padding: 4px;
}

table.datagrid td {
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box;
    padding: 4px;
    border-bottom:1px solid #CCCCCC;
}
/* table data grid */

/* tab */
.tabs {
    width: 100%;
    margin: auto;
    color:#505050;
}

.tab-buttons {
    display: flex;
    border-bottom: 2px solid #CCCCCC;
}

.tab-buttons button {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    color:#505050;
}

.tab-buttons button.active {
    border-color: var(--secondarycolor);
    color: var(--secondarycolor);
    font-weight: bold;
}

.tab-content {
    display: none;
    padding: 20px;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
}

.tab-content.active {
    display: block;
}
/* tab */

.lbl {
    color: #505050;   
}