@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8fafc;
    overflow-x: hidden;
}

.profile-img {
/*	width: 150px;
	height: 150px;
	margin-bottom: 1.5rem;
*/
	border-radius: 50%;
	border: 4px solid var(--primary-color);
	box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
	transition: transform 0.6s ease;
}
.profile-img:hover {
	transform: scale(1.1) rotate(10deg);
}



/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #6366f1;
    border-radius: 4px;
}

/* Toast Notification */
#toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 16px;
    position: fixed;
    z-index: 50;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s, bottom 0.3s;
}

#toast.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}

/* Loader */
.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #6366f1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.search-dropdown {
    scrollbar-width: thin;
}


.no-break-line {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
