body {
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}

.job-seeker-header {
    background-color: #ffffff;
    padding: 20px 0;
}

.job-seeker-header .logo img {
    max-height: 40px;
}

.job-seeker-header .main-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.job-seeker-header .main-menu ul li {
    display: inline-block;
    margin-left: 25px;
}

.job-seeker-header .main-menu ul li a {
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.job-seeker-header .main-menu ul li a:hover {
    color: #007bff;
}

.hero-section {
    padding: 60px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 40px;
}

.filter-section {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.job-listing-section {
    padding-bottom: 60px;
}

.job-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
}

.job-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.job-card .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
}

.job-card .job-info h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.job-card .job-info p {
    margin-bottom: 0;
    color: #6c757d;
}

.job-card .action-button {
    margin-left: auto;
}

.job-seeker-footer {
    background-color: #343a40;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

.floating-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #343a40;
    color: white;
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none; /* Hidden by default */
}

.select-btn.selected {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
}

#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
    transition: background-color 0.3s;
}

#scrollTopBtn:hover {
    background-color: #0056b3;
}

#scrollUp {
	background: #E12454;
	height: 50px;
	width: 50px;
	right: 50px;
	bottom: 77px;
	color: #fff;
	font-size: 20px;
	text-align: center;
	border-radius: 50%;
	font-size: 20px;
	line-height: 48px;
}

#scrollUp:hover {
    background: #E04FAA;
}
