            .job-section {
                max-width: 900px;
                margin: auto;
                /* background: #fff; */
                background: #EEEEEE;
                padding: 40px;
                border-radius: 12px;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            }

            .job-header {
                margin-bottom: 25px;
            }

            .job-header h1 {
                font-size: 30px;
                margin-bottom: 10px;
                color: #2c3e50;
            }

            .job-header .meta {
                font-size: 14px;
                color: #777;
            }

            .job-info {
                display: flex;
                flex-wrap: wrap;
                gap: 15px;
                margin-bottom: 30px;
            }

            .job-info div {
                /* background: #f0f3f5; */
                background: #ffffff;
                padding: 12px 18px;
                border-radius: 8px;
                font-size: 14px;
            }

            .job-description {
                line-height: 1.8;
                font-size: 16px;
                margin-bottom: 30px;
            }

            .meta-tags {
                margin-bottom: 10px;
                display: flex;
                flex-wrap: wrap;
                gap: 10px;
            }

            .tag {
                background-color: #d4f8d4;
                color: #2e5d29;
                padding: 6px 10px;
                border-radius: 5px;
                font-weight: 600;
                display: inline-flex;
                align-items: center;
                font-size: 12px;
                box-shadow: 2px 2px 2px #d2ecd2;
            }

            .tick {
                margin-left: 5px;
                color: green;
                font-weight: bold;
            }

            .cross {
                margin-left: 5px;
                color: red;
                font-weight: bold;
            }

            .tag.error {
                background-color: #fcdada;
                color: #7a1c1c;
            }


            .apply-btn {
                background-color: #61A438;
                color: white;
                padding: 14px 28px;
                font-size: 16px;
                border: none;
                border-radius: 8px;
                cursor: pointer;
                transition: 0.3s ease;
            }

            .apply-btn:hover {
                background-color: #27ae60;
            }

            .d-block{
                display: block;
            }
            .label-color{
                color: #5f5f5f;
                font-size: 13px;
                font-weight: 500;
                margin-bottom: 0;
            }
            .label-h3{
                color: #737373;
            }
            .salary-range {
                background-color: #d4f8d4;
                color: #2e5d29;
                padding: 6px 12px;
                display: inline-block;
                border-radius: 5px;
                font-weight: bold;
                margin-bottom: 10px;
            }
            .mb-0{
                margin-bottom: 0 !important;
            }

            .custom-hr{
                border: 1px solid #D9DEE3; margin-top: 12px; margin-bottom: 12px;
            }
            .skill-tag{
                min-width: 64px;
                text-align: center;
                justify-content: center;
                background-color: #ffffff !important;
                color: #4e4e4e !important;
                margin-right: 5px !important;
                padding: 1px 10px;
                box-shadow: 2px 2px 2px #dadada;
            }
            .mb-30{
                margin-bottom: 30px;
            }
            .spacer-b-19{
                margin-bottom: 19px;
            }
            .p-11{
                padding: 11px;
            }
            .ml-7{
                margin-left: 7px;
            }
            .btn-disabled {
                background-color: #cfd8dc;   /* Light greyish-blue */
                color: #6c757d;              /* Muted text */
                border: none;
             
                cursor: not-allowed !important;
                opacity: 0.7;
               
            }
            .mb-7{
                margin-bottom: 7px;
            }
            @media (max-width: 600px) {
                .job-info {
                    flex-direction: column;
                }

                .apply-btn {
                    width: 100%;
                    padding: 16px;
                }
            }