
body{
	 font-family: 'Roboto', sans-serif;
	font-family:'Poppins', sans-serif 
}

.color-white{
	color: #ffffff;
}

.btn-save{
	background-color: #088E3D !important;
	color: #ffffff !important;
	
}

.btn-save:hover{
	background-color: #076A30 !important;
	color: #ffffff !important;
	
}

/* Custom CSS for dropdown arrows */
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '\25BC'; /* Down arrow Unicode */
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #6c757d;
    font-size: 12px;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    padding-right: 30px;
}


/* --- Custom Buttons Styling --- */

.btn-save,
.btn-report {
    width: 250px;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 0;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Save Button */
.btn-save {
    background-color: #088E3D;
    color: #fff;
    border: none;
}

.btn-save:hover {
    background-color: #076A30;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* View Report Button */
.btn-report {
    background-color: transparent;
    color: #088E3D;
    border: 2px solid #088E3D;
}

.btn-report:hover {
    background-color: #076A30;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}



/* --- Floating Buttons (Fixed + Smaller) --- */
.fab {
    width: 42px;
    height: 42px;
    background-color: #088E3D;
    color: #fff;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    position: fixed;
    right: 20px;
    z-index: 2000; /* make sure it floats above everything */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover lift */
.fab:hover {
    transform: scale(1.05);
    background-color: #0AAE4C;
}

/* Label styling */
.fab-label {
    position: absolute;
    right: 55px;
    background: #088E3D;
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
}

.fab:hover .fab-label {
    opacity: 1;
    transform: translateY(0);
}

/* === Individual positions === */
#openAddAccountBtn {
    bottom: 90px; /* Show above Quality button */
}

#openAddQualityBtn {
    bottom: 30px;
}
/* Ensure the container doesn't block fixed positioning */
.fab-container {
    position: relative; /* not fixed or absolute */
    z-index: 1;
}

#modalItemList table tbody tr:hover {
    background-color: #f0f8ff; /* light blue */
    cursor: pointer;
}

.selectItemBtn {
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    color: #fff;
    font-weight: 500;
}
.selectItemBtn:hover {
    background: linear-gradient(90deg, #feb47b, #ff7e5f);
    color: #fff;
}

