body {
	font-family: 'Poppins', sans-serif !important; 
   	background-color: #f4f4f4;
	margin: 0;
	color: #333;
	margin-bottom: 50px;
}

.dN{display: none;}
/* Highlight table header */
.table thead.thead-dark th {
    background-color: #343a40;
    color: #fff;
    text-align: center;
}

/* Make table responsive */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Center table cells vertically */
.table tbody td, .table tbody th {
    vertical-align: middle;
}

/* Add some padding to the table */
.table {
    margin-bottom: 1rem;
    background-color: #fff;
}

/* Optional: Add some space between buttons */
.btn-sm + .btn-sm {
    margin-left: 0.5rem;
}

.upper {
	text-transform: uppercase;;
}

.width30px{width: 30px;}

.container{max-width: 100% !important;}
/* ################## HEADER FOOTER ##########################*/

.navbar-light .navbar-nav .nav-link{color: #000;}
.navbar-bg-light{background-color: #f3dbca !important;}
.footer {
    background-color: #128b1b; /* Change to your desired color */
    color: white;
    text-align: center;
    padding: 10px 0; /* Adjust height with padding */
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    font-size: 14px;
}
.navbar-collapse{text-align: right;}

/* ################## DASHBOARD ##########################*/
.dashboard-tile-container {
	    /*-ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;*/
	    -ms-flex: 0 0 25.0%;
        flex: 0 0 25.0%;
        max-width: 25.0%;
        position: relative;
	    width: 100%;
	    padding-right: 15px;
	    padding-left: 15px;
}

.dashboard-tile {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 80px;
    margin: 10px 0;
    transition: box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dashboard-tile:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.tile-link {
    text-decoration: none;
    color: inherit;
}

.tile-link:hover {
    text-decoration: none;
}

.fa-home, .fa-shipping-fast, .fa-cogs {
    color: #007bff;
}

h5 {
    margin-top: 10px; font-size: 100%;
}
/* ##################### FORM ########################## */
/* Add some padding and margin to the form */
form {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Style the form labels */
form label {
    font-weight: bold;
}

/* Add spacing between form rows */
.form-row {
    margin-bottom: 1rem;
}

/* Style the form controls */
.form-control {
    border-radius: 0.25rem;
    border: 1px solid #ced4da;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* Style the submit button */
form .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    transition: background-color 0.2s, border-color 0.2s;
}

form .btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

select option:disabled {
    background-color: #e9ecef; /* Light gray background */
    color: #6c757d; /* Gray text */
}


@media (max-width: 1600px) {
/* ################## DASHBOARD ##########################*/
	.dashboard-tile-container {
		-ms-flex: 0 0 25.0%;
       	flex: 0 0 25.0%;
       	max-width: 25.0%;
        font-size: 90%;
	}
	
	.dashboard-tile {
	    background-color: #f8f9fa;
	    border-radius: 15px;
	    padding: 40px;
	    margin: 10px 0;
	    transition: box-shadow 0.3s;
	    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	}
	
	.dashboard-tile:hover {
	    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	}
	
	.tile-link {
	    text-decoration: none;
	    color: inherit;
	}
	
	.tile-link:hover {
	    text-decoration: none;
	}
	
	.fa-home, .fa-shipping-fast, .fa-cogs {
	    color: #007bff;
	}
	
	h5 {
	    margin-top: 10px; font-size: 100%;
	}
}


@media (max-width: 900px) {
	.dashboard-tile-container {
		    -ms-flex: 0 0 100%;
	        flex: 0 0 100%;
	        max-width: 100%;
	        position: relative;
		    width: 100%;
		    padding-right: 15px;
		    padding-left: 15px;
	}
	.navbar-nav .dropdown-menu{text-align: right;}
}


@media (max-width: 576px) {
    .form-row {
        display: block;
    }

    .form-row .col-md-6 {
        margin-bottom: 1rem;
    }
}

