/*
Theme Name: Jobly
Author: Your Name
Description: A job listing theme with SEO & AdSense support.
Version: 1.2
*/

body {
    font-family: Arial, sans-serif;
    color: #333;
    margin-top: 100px; /* Prevents content from being hidden under sticky header */
}

a {
    color: #8B0000; /* Dark Red Primary Color */
    text-decoration: none;
}

a:hover {
    color: #600000;
}

/* Header Styling */
.sticky-header {
    background: #FFF;
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.sticky-header .site-logo img{
	width:200px;
	height:auto;
}
.navbar-brand img {
    height: 50px;
}

.navbar-nav {
    gap: 20px;
}

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.job-thumbnail img{
	width: 100%;
    height: 250px;
}

/* Footer Styling */
footer {
    background: #222;
    color: white;
    padding: 20px 0;
}

.footer-logo img {
    height: 60px;
    display: block;
    margin: 0 auto 15px;
}

.footer-menu a {
    color: white;
    margin: 0 10px;
}

.footer-social a {
    color: white;
    font-size: 18px;
    margin: 0 5px;
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    opacity: 0.8;
}

#menu-main-menu-1{
	list-style:none;
}

.related-job-thumbnail {
    width: 100px; /* Adjust size as needed */
    height: auto;
    margin-right: 10px;
    vertical-align: middle;
}
.related-jobs ul li {
    display: flex;
    align-items: center;
	margin-bottom:15px;
}
.related-jobs ul li a {
    display: flex;
    align-items: center;
}

.related-jobs ul{
	padding:0px;
}

.pagination {
    text-align: center;
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.pagination a, .pagination span {
    display: inline-block;
    padding: 8px 12px;
    margin: 3px;
    border: 1px solid #8B0000;
    color: #8B0000;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.pagination a:hover {
    background-color: #8B0000;
    color: white;
}

.pagination .current {
    background-color: #8B0000;
    color: white;
    font-weight: bold;
    border: 1px solid #8B0000;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .pagination {
        flex-wrap: wrap;
        gap: 3px;
    }

    .pagination a, .pagination span {
        padding: 6px 10px;
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }

    .pagination a, .pagination span {
        padding: 2px 6px;
        font-size: 10px;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .navbar-collapse {
        background: white;
        padding: 10px;
    }

    .footer-logo img {
        margin-bottom: 10px;
    }

    .footer-menu,
    .footer-social,
    .footer-copyright {
        text-align: center;
    }

    .row.align-items-center {
        flex-direction: column;
        text-align: center;
    }

    .footer-menu {
        margin-top: 10px;
    }
}
