﻿/* Footer Navigation Bar */
.footer-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

    .footer-nav nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 10px 0;
        position: relative;
    }

    .footer-nav .row {
        width: 100%;
    }

/* Add Job Button */
.add-job-button {
    position: absolute;
    top: -25px; /* Adjust to overlap footer */
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFE000; /* Yellow Button color */
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 2px solid #333;
    z-index: 1001; /* Ensure it appears above other elements */
}

    /* Center icon inside the button */
    .add-job-button i {
        line-height: 60px; /* Match button height for centering */
    }

    /* Hover effect for the button */
    .add-job-button:hover {
        background-color: #e64a19; /* Slightly darker orange */
        color: #fff;
        text-decoration: none;
    }

/* Footer Icons */
.footer-nav i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.footer-nav span {
    font-size: 0.8rem;
}

.add-job-button {
    animation: pulse 2s infinite;
}
