body {
    font-family: 'Quicksand', sans-serif;
}

.input-group {
    position: relative;
    margin-bottom: 1rem;
}

.input-group label {
    position: absolute;
    top: 0.7rem;
    left: 0.75rem;
    pointer-events: none;
    transition: all 0.2s ease;  
    color: #a0aec0;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
    top: -0.55rem;
    left: 0.75rem;
    font-size: 0.75rem;
    color: #3b82f6;
}

.input-group input {
    width: 100%;
    padding: 0.75rem 0.75rem 0.7rem 0.75rem;
    border: 1px solid #d0d5db;
    border-radius: 0.375rem;
    transition: border-color 0.2s ease;
}

.input-group input:focus {
    border-color: #3b82f6;
    border-width: 0.2rem;
    outline: none;
}  

.rotate-icon {
    transition: transform 0.3s ease;
}

.rotate-90 {
    transform: rotate(90deg);
}

aside::-webkit-scrollbar {  
    width: 5px;
    display: none;
}  

aside:hover::-webkit-scrollbar {  
    display: block;
}  

aside::-webkit-scrollbar-track {  
background: none;
position: absolute;
}  

aside::-webkit-scrollbar-thumb {  
background: #d6d3d0;
border-radius: 10px;
}  

aside::-webkit-scrollbar-thumb:hover {  
background: #555;
}  

.modal-enter-active, .modal-leave-active {
    transition: opacity 0.3s ease;
}
.modal-enter-from, .modal-leave-to {
    opacity: 0;
}
.modal-content-enter-active, .modal-content-leave-active {
    transition: transform 0.3s ease;
}
.modal-content-enter-from, .modal-content-leave-to {
    transform: translateY(-20px);
}
#tempTable {
    min-width: 100%;
    border-collapse: collapse;
}

#tempTable th, #tempTable td {
    white-space: nowrap;
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.w-full.overflow-x-auto::-webkit-scrollbar {  
    width: 5px;
    display: none;
}  

.w-full.overflow-x-auto:hover::-webkit-scrollbar {  
    display: block;
}  

.w-full.overflow-x-auto::-webkit-scrollbar-track {  
background: none;
position: absolute;
}  

.w-full.overflow-x-auto::-webkit-scrollbar-thumb {  
background: #d6d3d0;
border-radius: 10px;
}  

.w-full.overflow-x-auto::-webkit-scrollbar-thumb:hover {  
background: #555;
}  

input::file-selector-button {
    color: rgb(255, 255, 255);
    background-color: rgb(67, 160, 254);
    border: thin solid rgb(186, 186, 186);
    border-radius: 5px;
    padding: 2px 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input::file-selector-button:hover {
    background-color: rgb(50, 130, 250); /* Warna latar belakang saat hover */
}
