.container {
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.job-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

input, textarea {
    width: 100%;
    height: 60px;
    padding: 16px;
    border: none;
    border-radius: 10px;
    background-color: #F5F5F5;
    font-size: 16px;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
    height: 140px;
}

.add-photos {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    box-sizing: border-box;
}

.add-photos-icon{
    padding: 15px;
    background-color: #F5F5F5;
    border-radius: 10px;
}

.add-photos-icon, .add-photos-text, .add-photos-arrow {
    margin-right: 16px;
}

.add-photos-text {
    flex-grow: 1;
}


.submit-button {
    background-color: #38E078;
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 17px 24px;
    cursor: not-allowed;
    font-weight: 700;
    transition: background-color 0.3s;
    margin-top: 100px;
    color: black;
}

.disabled {
    opacity: 0.5;
    cursor: pointer;
} 

.footer-padding {
    height: 80px; /* Adjust based on the height of the fixed button */
}


  /*loading spinner animation */
            #loading-overlay {
              position: fixed;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              background: rgba(10, 10, 10, 0.8);
              display: flex;
              justify-content: center;
              align-items: center;
              z-index: 9999;
            }
            
            .spinner {
              width: 40px;
              height: 40px;
              border: 4px solid #ccc;
              border-top: 4px solid #2cad05;
              border-radius: 50%;
              animation: spin 1s linear infinite;
            }
            
            .hidden {
              display: none !important; 
            }
            
            @keyframes spin {
              0% { transform: rotate(0deg); }
              100% { transform: rotate(360deg); }
            }
            #loading-overlay.hidden {
              display: none !important;
            }
            
