 .job-list {
     max-width: 800px;
     margin: 40px auto;
     padding: 0 20px;
 }

 .job-card {
     background: #fff;
     border: 1px solid #eee;
     border-radius: 8px;
     padding: 20px;
     margin-bottom: 20px;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
 }

 .job-card h2 {
     margin: 0;
     color: #333;
     font-size: 20px;
 }

 .company-name {
     font-size: 14px;
     color: #ff6600;
     font-weight: bold;
     margin-top: 5px;
 }

 .job-details {
     color: #666;
     font-size: 14px;
     margin: 10px 0;
 }

 .tag {
     display: inline-block;
     background: #f4f4f4;
     border-radius: 5px;
     padding: 4px 10px;
     font-size: 12px;
     margin-right: 8px;
 }

 .apply-btn {
     display: inline-block;
     background: #ff6600;
     color: #fff;
     padding: 8px 15px;
     border-radius: 6px;
     text-decoration: none;
     font-size: 14px;
     margin-top: 10px;
     transition: 0.2s ease;
 }

 .apply-btn:hover {
     background: #e65500;
 }

 .locked-msg {
     font-size: 12px;
     color: #888;
     margin-top: 5px;
 }


 /* Floating Chatbot Button */
 #chatbot-btn {
     position: fixed;
     bottom: 20px;
     right: 20px;
     background-color: var(--primary-color);
     color: white;
     width: 60px;
     height: 60px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 28px;
     cursor: pointer;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
     z-index: 1000;
     transition: transform 0.2s ease;
 }

 #chatbot-btn:hover {
     transform: scale(1.1);
 }

 /* Chatbot Window */
 #chatbot-window {
     position: fixed;
     bottom: 90px;
     right: 20px;
     width: 300px;
     max-height: 400px;
     background: white;
     border-radius: 12px;
     box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
     display: none;
     /* hidden by default */
     flex-direction: column;
     overflow: hidden;
     z-index: 1000;
 }

 .chatbot-header {
     background: var(--primary-color);
     color: white;
     padding: 12px;
     font-weight: bold;
     text-align: center;
 }

 .chatbot-messages {
     flex: 1;
     padding: 10px;
     overflow-y: auto;
     font-size: 14px;
 }

 .message {
     margin-bottom: 8px;
     padding: 8px 12px;
     border-radius: 10px;
     max-width: 80%;
 }

 .message.bot {
     background: #f1f1f1;
     align-self: flex-start;
 }

 .message.user {
     background: var(--primary-color);
     color: white;
     align-self: flex-end;
 }

 .chatbot-input {
     display: flex;
     border-top: 1px solid #ddd;
 }

 .chatbot-input input {
     flex: 1;
     border: none;
     padding: 10px;
     outline: none;
 }

 .chatbot-input button {
     background: var(--primary-color);
     color: white;
     border: none;
     padding: 0 15px;
     cursor: pointer;
 }


 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Roboto', 'Verdana', sans-serif;
 }

 :root {
     --primary-color: #ff6b35;
     --secondary-color: #f8f9fa;
     --text-color: #333;
     --light-gray: #e9ecef;
     --dark-gray: #6c757d;
     --white: #ffffff;
     --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     --transition: all 0.3s ease;
     --font-size-base: 22px;
 }

 [data-theme="dark"] {
     --primary-color: #ff6b35;
     --secondary-color: #1a1a1a;
     --text-color: #e0e0e0;
     --light-gray: #2d2d2d;
     --dark-gray: #a0a0a0;
     --white: #121212;
     --shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
 }

 body {
     background-color: var(--white);
     color: var(--text-color);
     transition: var(--transition);
     line-height: 1.6;
     font-size: var(--font-size-base);
 }

 .container {
     width: 90%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 30px 0;
 }

 header {
     background-color: var(--white);
     box-shadow: var(--shadow);
     position: sticky;
     top: 0;
     z-index: 1000;
     transition: var(--transition);
     padding: 10px 0;
 }

 nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 0 30px;
     max-width: 1400px;
     margin: 0 auto;
 }

 .logo {
     font-size: 28px;
     font-weight: bold;
     color: var(--primary-color);
     display: flex;
     align-items: center;
     gap: 8px;
     white-space: nowrap;
 }
 
 .nav-links {
     display: flex;
     list-style: none;
     white-space: nowrap;
         margin-bottom: 0px;
 }

 .nav-links li {
     margin-left: 20px;
 }

 .nav-links a {
     text-decoration: none;
     color: var(--text-color);
     font-weight: 500;
     transition: var(--transition);
     position: relative;
     font-size: 18px;
 }

 .nav-links a:hover {
     color: var(--primary-color);
 }

 .nav-links a.active {
     color: var(--primary-color);
 }

 .nav-links a.active::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 100%;
     height: 3px;
     background-color: var(--primary-color);
 }

 .auth-section {
     display: flex;
     align-items: center;
     gap: 20px;
     white-space: nowrap;
 }

 .language-selector {
     position: relative;
 }

 .language-btn {
     background: none;
     border: 2px solid var(--light-gray);
     border-radius: 6px;
     cursor: pointer;
     font-size: 16px;
     padding: 8px 12px;
     color: var(--text-color);
     display: flex;
     align-items: center;
     gap: 5px;
     transition: var(--transition);
     height: 42px;
     width: 120px;
     justify-content: center;
 }

 .language-btn:hover {
     border-color: var(--primary-color);
     color: var(--primary-color);
 }

 .language-dropdown {
     position: absolute;
     top: 100%;
     right: 0;
     margin-top: 5px;
     z-index: 1001;
     display: none;
     background-color: var(--white);
     border-radius: 6px;
     box-shadow: var(--shadow);
     min-width: 150px;
 }

 .language-dropdown.active {
     display: block;
 }

 .language-option {
     padding: 10px 15px;
     cursor: pointer;
     transition: var(--transition);
     font-size: 16px;
 }

 .language-option:hover {
     background-color: var(--light-gray);
 }

 #google_translate_element {
     display: none;
 }

 .theme-toggle {
     background: none;
     border: 2px solid var(--light-gray);
     border-radius: 6px;
     cursor: pointer;
     font-size: 18px;
     color: var(--text-color);
     padding: 8px;
     height: 42px;
     width: 42px;
     display: flex;
     justify-content: center;
     align-items: center;
     transition: var(--transition);
 }

 .theme-toggle:hover {
     border-color: var(--primary-color);
     color: var(--primary-color);
 }

 .btn-login,
 .btn-register {
     padding: 8px 16px;
     border-radius: 6px;
     text-decoration: none;
     font-weight: 500;
     transition: var(--transition);
     font-size: 16px;
     border: 2px solid transparent;
     height: 42px;
     display: flex;
     align-items: center;
     justify-content: center;
     white-space: nowrap;
 }

 .btn-login {
     color: var(--primary-color);
     border: 2px solid var(--primary-color);
     background-color: transparent;
     min-width: 80px;
     padding: 0 16px;
     width: auto;
 }

 .btn-login:hover {
     background-color: var(--primary-color);
     color: var(--white);
 }

 .btn-register {
     background-color: var(--primary-color);
     color: var(--white);
     border: 2px solid var(--primary-color);
     min-width: 100px;
     padding: 0 20px;
     width: auto;
 }

 .btn-register:hover {
     background-color: #e55a2b;
     border-color: #e55a2b;
 }


 .hero {
     background-color: var(--secondary-color);
     padding: 60px 0;
     text-align: center;
 }

 .hero-content h1 {
     font-size: 3rem;
     margin-bottom: 20px;
     color: var(--text-color);
 }

 .hero-content p {
     font-size: 1.5rem;
     margin-bottom: 30px;
     max-width: 800px;
     margin-left: auto;
     margin-right: auto;
     color: var(--dark-gray);
 }

 .search-container {
     max-width: 800px;
     margin: 0 auto;
     background-color: var(--white);
     padding: 40px;
     border-radius: 12px;
     box-shadow: var(--shadow);
 }

 .search-bar {
     display: flex;
     gap: 1.5rem;
     justify-content: center;
 }

 .search-btn {
     display: inline-block;
     padding: 15px 25px;
     background-color: var(--primary-color);
     color: var(--white);
     border-radius: 8px;
     text-decoration: none;
     font-weight: 500;
     transition: var(--transition);
     flex: 1;
     max-width: 300px;
     text-align: center;
     font-size: 18px;
     border: 2px solid transparent;
 }

 .search-btn:hover {
     background-color: #e55a2b;
     transform: translateY(-2px);
 }

 .main-content {
     padding: 50px 0;
 }

 .section-title {
     font-size: 2.5rem;
     margin-bottom: 30px;
     text-align: center;
     color: var(--text-color);
 }

 .stats-container {
     display: flex;
     justify-content: space-around;
     margin: 50px 0;
     flex-wrap: wrap;
 }

 .stat-item {
     text-align: center;
     padding: 30px;
     min-width: 200px;
     background-color: var(--white);
     border-radius: 12px;
     box-shadow: var(--shadow);
     transition: var(--transition);
     margin: 15px;
 }

 .stat-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }

 .stat-number {
     font-size: 3.5rem;
     font-weight: bold;
     color: var(--primary-color);
     margin-bottom: 10px;
 }

 .stat-label {
     font-size: 1.3rem;
     color: var(--dark-gray);
 }

 .featured-jobs {
     margin-top: 50px;
 }

 .job-listing {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
     gap: 25px;
 }

 .job-card {
     background-color: var(--white);
     border-radius: 12px;
     padding: 25px;
     box-shadow: var(--shadow);
     transition: var(--transition);
     border: 2px solid transparent;
 }

 .job-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
     border-color: var(--primary-color);
 }

 .job-card h3 {
     margin-bottom: 15px;
     color: var(--text-color);
     font-size: 1.6rem;
 }

 .job-card p {
     margin-bottom: 12px;
     color: var(--dark-gray);
     font-size: 1.2rem;
 }

 .job-card .job-meta {
     display: flex;
     justify-content: space-between;
     margin-bottom: 15px;
     font-size: 1.1rem;
     color: var(--dark-gray);
 }

 .job-card .apply-btn {
     display: inline-block;
     padding: 12px 20px;
     background-color: var(--primary-color);
     color: var(--white);
     border-radius: 8px;
     text-decoration: none;
     font-weight: 500;
     transition: var(--transition);
     font-size: 16px;
     border: 2px solid transparent;
 }

 .job-card .apply-btn:hover {
     background-color: #e55a2b;
 }

 .categories-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
     gap: 25px;
     margin-bottom: 40px;
 }

 .category-card {
     background-color: var(--white);
     border-radius: 12px;
     padding: 30px;
     text-align: center;
     box-shadow: var(--shadow);
     transition: var(--transition);
     text-decoration: none;
     color: var(--text-color);
     border: 2px solid transparent;
 }

 .category-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
     border-color: var(--primary-color);
 }

 .category-icon {
     font-size: 3.5rem;
     margin-bottom: 15px;
 }

 .category-card h3 {
     margin-bottom: 10px;
     color: var(--text-color);
     font-size: 1.5rem;
 }

 .job-count {
     color: var(--dark-gray);
     font-size: 1.2rem;
 }

 .register-box,
 .login-box {
     max-width: 600px;
     margin: 0 auto;
     background-color: var(--white);
     padding: 40px;
     border-radius: 12px;
     box-shadow: var(--shadow);
 }

 .register-box h2,
 .login-box h2 {
     margin-bottom: 30px;
     text-align: center;
     color: var(--text-color);
     font-size: 2.2rem;
 }

 .form-group {
     margin-bottom: 25px;
 }

 .form-group label {
     display: block;
     margin-bottom: 10px;
     font-weight: 500;
     color: var(--text-color);
     font-size: 1.2rem;
 }

 .form-group input,
 .form-group select {
     width: 100%;
     padding: 15px;
     border: 2px solid var(--light-gray);
     border-radius: 8px;
     background-color: var(--white);
     color: var(--text-color);
     font-size: 1.1rem;
 }

 .radio-group {
     display: flex;
     gap: 25px;
     margin-top: 10px;
 }

 .radio-option {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .radio-option input[type="radio"] {
     width: 20px;
     height: 20px;
 }

 .radio-option label {
     font-size: 1.1rem;
 }

 .submit-btn,
 .login-btn {
     width: 100%;
     padding: 15px;
     background-color: var(--primary-color);
     color: var(--white);
     border: none;
     border-radius: 8px;
     font-weight: 500;
     cursor: pointer;
     transition: var(--transition);
     font-size: 1.3rem;
     border: 2px solid transparent;
 }

 .submit-btn:hover,
 .login-btn:hover {
     background-color: #e55a2b;
 }

 .register-link {
     text-align: center;
     margin-top: 20px;
     font-size: 1.1rem;
 }

 .register-link a {
     color: var(--primary-color);
     text-decoration: none;
     font-weight: 500;
 }

 .register-link a:hover {
     text-decoration: underline;
 }

 .back-btn {
     display: inline-block;
     margin-top: 20px;
     padding: 12px 20px;
     background-color: var(--light-gray);
     color: var(--text-color);
     border-radius: 8px;
     text-decoration: none;
     font-weight: 500;
     transition: var(--transition);
     font-size: 16px;
     border: 2px solid transparent;
 }

 .back-btn:hover {
     background-color: var(--dark-gray);
     color: var(--white);
 }

 .page-section {
     display: none;
 }

 .page-section.active {
     display: block;
 }

 .about-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 50px 0;
 }

 .about-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     align-items: center;
 }

 .about-text h2 {
     font-size: 2.5rem;
     margin-bottom: 20px;
     color: var(--text-color);
 }

 .about-text p {
     font-size: 1.3rem;
     margin-bottom: 15px;
     color: var(--dark-gray);
     line-height: 1.6;
 }

 .about-image {
     border-radius: 12px;
     overflow: hidden;
     box-shadow: var(--shadow);
 }

 .about-image img {
     width: 100%;
     height: auto;
     display: block;
 }

 .mission-vision {
     margin-top: 40px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 30px;
 }

 .mission,
 .vision {
     background-color: var(--white);
     padding: 30px;
     border-radius: 12px;
     box-shadow: var(--shadow);
 }

 .mission h3,
 .vision h3 {
     font-size: 1.8rem;
     margin-bottom: 15px;
     color: var(--primary-color);
 }

 .mission p,
 .vision p {
     font-size: 1.2rem;
     color: var(--dark-gray);
     line-height: 1.5;
 }

 .membership-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 50px 0;
 }

 .membership-header {
     text-align: center;
     margin-bottom: 40px;
 }

 .membership-header h2 {
     font-size: 2.5rem;
     margin-bottom: 15px;
     color: var(--text-color);
 }

 .membership-header p {
     font-size: 1.3rem;
     color: var(--dark-gray);
 }

 .billing-toggle {
     display: flex;
     justify-content: center;
     margin-bottom: 40px;
 }

 .billing-option {
     padding: 12px 25px;
     background-color: var(--light-gray);
     color: var(--text-color);
     border: 2px solid transparent;
     cursor: pointer;
     font-size: 1.2rem;
     transition: var(--transition);
 }

 .billing-option:first-child {
     border-radius: 8px 0 0 8px;
 }

 .billing-option:last-child {
     border-radius: 0 8px 8px 0;
 }

 .billing-option.active {
     background-color: var(--primary-color);
     color: var(--white);
 }

 .plans-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 30px;
 }

 .plan-card {
     background-color: var(--white);
     border-radius: 12px;
     padding: 30px;
     box-shadow: var(--shadow);
     text-align: center;
     transition: var(--transition);
     position: relative;
     border: 2px solid transparent;
 }

 .plan-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
 }

 .plan-card.popular {
     border-color: var(--primary-color);
 }

 .popular-badge {
     position: absolute;
     top: -15px;
     left: 50%;
     transform: translateX(-50%);
     background-color: var(--primary-color);
     color: var(--white);
     padding: 8px 15px;
     border-radius: 20px;
     font-size: 1rem;
     font-weight: bold;
 }

 .plan-name {
     font-size: 2rem;
     margin-bottom: 15px;
     color: var(--text-color);
 }

 .plan-price {
     font-size: 2.8rem;
     font-weight: bold;
     color: var(--primary-color);
     margin-bottom: 10px;
 }

 .plan-period {
     color: var(--dark-gray);
     margin-bottom: 30px;
     font-size: 1.2rem;
 }

 .plan-features {
     list-style: none;
     margin-bottom: 30px;
 }

 .plan-features li {
     padding: 12px 0;
     border-bottom: 1px solid var(--light-gray);
     font-size: 1.2rem;
 }

 .plan-features li:last-child {
     border-bottom: none;
 }

 .plan-btn {
     display: inline-block;
     width: 100%;
     padding: 15px;
     background-color: var(--primary-color);
     color: var(--white);
     border: none;
     border-radius: 8px;
     text-decoration: none;
     font-weight: 500;
     font-size: 1.2rem;
     transition: var(--transition);
     border: 2px solid transparent;
 }

 .plan-btn:hover {
     background-color: #e55a2b;
 }

 /* Horizontal Job Table */
 .job-table-container {
     overflow-x: auto;
     margin-top: 30px;
 }

 .job-table {
     width: 100%;
     border-collapse: collapse;
     background-color: var(--white);
     border-radius: 12px;
     overflow: hidden;
     box-shadow: var(--shadow);
 }

 .job-table th,
 .job-table td {
     padding: 15px;
     text-align: left;
     border-bottom: 1px solid var(--light-gray);
 }

 .job-table th {
     background-color: var(--secondary-color);
     font-weight: 600;
     font-size: 1.1rem;
     color: var(--text-color);
 }

 .job-table tr:last-child td {
     border-bottom: none;
 }

 .job-table tr:hover {
     background-color: var(--secondary-color);
 }

 .job-table .job-title {
     font-weight: 600;
     font-size: 1.2rem;
     color: var(--primary-color);
 }

 .job-table .job-location {
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .job-table .job-salary {
     font-weight: 500;
     color: var(--dark-gray);
 }

 .job-table .apply-btn {
     display: inline-block;
     padding: 8px 16px;
     background-color: var(--primary-color);
     color: var(--white);
     border-radius: 6px;
     text-decoration: none;
     font-weight: 500;
     font-size: 14px;
     transition: var(--transition);
     border: 2px solid transparent;

     white-space: nowrap;
     /* ✅ keep text on one line */
     width: auto;
     /* ✅ let it expand */
     min-width: 120px;
     /* ✅ gives base size for English */
     text-align: center;
     /* ✅ keep text centered */
 }


 .job-table .apply-btn:hover {
     background-color: #e55a2b;
 }

 @media (max-width: 1024px) {
     .nav-links {
         display: none;
     }

     .auth-section {
         gap: 8px;
     }

     .language-btn {
         width: 100px;
         font-size: 14px;
         padding: 6px 8px;
     }

     .theme-toggle {
         width: 36px;
         height: 36px;
         font-size: 16px;
     }

     .btn-login,
     .btn-register {
         padding: 6px 12px;
         font-size: 14px;
     }

     .btn-login {
         width: 70px;
     }

     .btn-register {
         width: 90px;
     }
 }

 @media (max-width: 768px) {
     .hero-content h1 {
         font-size: 2.2rem;
     }

     .search-bar {
         flex-direction: column;
     }

     .search-btn {
         max-width: 100%;
     }

     .stats-container {
         flex-direction: column;
         align-items: center;
     }

     .stat-item {
         width: 100%;
         margin-bottom: 20px;
     }

     .job-listing {
         grid-template-columns: 1fr;
     }

     .categories-grid {
         grid-template-columns: 1fr;
     }

     .billing-toggle {
         flex-direction: column;
         align-items: center;
     }

     .billing-option {
         width: 100%;
         max-width: 300px;
         margin-bottom: 10px;
         border-radius: 8px;
     }

     .billing-option:first-child {
         border-radius: 8px;
     }

     .billing-option:last-child {
         border-radius: 8px;
     }

     .about-content {
         grid-template-columns: 1fr;
     }

     .mission-vision {
         grid-template-columns: 1fr;
     }

     .job-table-container {
         font-size: 14px;
     }

     .job-table th,
     .job-table td {
         padding: 10px 8px;
     }
 }


 /* General alert box styling */
 .alert {
     padding: 15px;
     margin: 10px 0;
     border-radius: 5px;
     font-family: Arial, sans-serif;
     font-size: 16px;
     position: relative;
     width: 100%;
 }

 /* Danger alert (error messages) */
 .alert-danger {
     background-color: #f8d7da;
     /* Light red background */
     color: #721c24;
     /* Dark red text */
     border: 1px solid #f5c6cb;
     /* Light red border */
 }
.alert .alert-success {
     background-color: #f8d7da;
     /* Light red background */
     color: #00a03d;
     /* Dark red text */
     border: 1px solid #f5c6cb;
     /* Light red border */
 }

 /* Close button styling */
 .alert .close {
     position: absolute;
     top: 10px;
     right: 15px;
     color: #721c24;
     font-size: 20px;
     font-weight: bold;
     border: none;
     background: none;
     cursor: pointer;
 }

 .alert .close:hover {
     color: #000;
     /* Darker color on hover */
 }

 /* User Info Section */
 .auth-section .user-info {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 16px;
     font-weight: 500;
     color: #333;
 }

 .auth-section .user-icon {
     font-size: 24px;
     /* Size of the user icon */
 }

 .auth-section .user-name {
     font-size: 18px;
     font-weight: 500;
     color: #333;
 }

 /* Logout Button */
 .auth-section .btn-logout {
     padding: 8px 16px;
     background-color: var(--primary-color);
     color: white;
     text-decoration: none;
     font-weight: 500;
     border-radius: 5px;
     transition: background-color 0.3s ease;
 }

 .auth-section .btn-logout:hover {
     background-color: #d54714;
 }

 /* Container for the success card */
 .payment-success-section {
     display: flex;
     justify-content: center;
     align-items: center;
     height: 100vh;
     /* Full viewport height */
     background-color: #f7f7f7;
     padding: 20px;
 }

 
 .success-card {
     background-color: white;
     padding: 30px;
     border-radius: 10px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     text-align: center;
 }

 .success-card h1 {
     font-size: 2.5rem;
     color: var(--primary-color);
     /* Green color for success */
     margin-bottom: 20px;
 }

 .success-card p {
     font-size: 1.2rem;
     color: #333;
     margin-bottom: 20px;
 }

 .success-card .btn-continue {
     display: inline-block;
     background-color:var(--primary-color);
     color: white;
     padding: 10px 20px;
     font-size: 1rem;
     text-decoration: none;
     border-radius: 5px;
     transition: background-color 0.3s ease;
 }

 .success-card .btn-continue:hover {
     background-color: var(--primary-color);
     /* Darker green on hover */
 }

 .btn-dashboard{
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
 }





  .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            cursor: pointer;
        }

        .dashboard {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 30px;
        }

        .profile-card {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 30px;
            height: fit-content;
        }

        .profile-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 25px;
        }

        .profile-pic-container {
            position: relative;
            margin-bottom: 15px;
        }

        .profile-pic {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--primary);
        }

        .edit-pic-btn {
            position: absolute;
            bottom: 5px;
            right: 5px;
            background-color: var(--primary);
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            transition: var(--transition);
        }

        .edit-pic-btn:hover {
            background-color: var(--primary-dark);
            transform: scale(1.05);
        }

        .profile-name {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .profile-title {
            color: var(--gray);
            font-size: 16px;
        }

        .profile-stats {
            display: flex;
            justify-content: space-around;
            margin: 20px 0 25px;
            padding: 15px 0;
            border-top: 1px solid var(--light-gray);
            border-bottom: 1px solid var(--light-gray);
        }

        .stat {
            text-align: center;
        }

        .stat-value {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
        }

        .stat-label {
            font-size: 14px;
            color: var(--gray);
        }

        .profile-section {
            margin-bottom: 25px;
        }

        .section-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .section-title i {
            color: var(--primary);
        }

        .bio-text {
            font-size: 15px;
            line-height: 1.6;
            color: var(--dark);
        }

        .info-list {
            list-style: none;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            font-size: 15px;
        }

        .info-item i {
            color: var(--primary);
            width: 20px;
            margin-right: 10px;
            margin-top: 3px;
        }

        .skills-container {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .skill-tag {
            background-color: rgba(255, 107, 53, 0.1);
            color: var(--primary);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }

        .certification-section {
            background-color: rgba(255, 107, 53, 0.05);
            padding: 15px;
            border-radius: 8px;
            border: 1px dashed var(--primary);
            margin-bottom: 20px;
        }

        .certification-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .certification-item:last-child {
            margin-bottom: 0;
        }

        .certification-icon {
            color: var(--primary);
            font-size: 18px;
        }

        .certification-details h4 {
            font-size: 15px;
            margin-bottom: 2px;
        }

        .certification-details p {
            font-size: 13px;
            color: var(--gray);
        }

        .availability-section {
            background-color: rgba(76, 201, 240, 0.05);
            padding: 15px;
            border-radius: 8px;
            border: 1px dashed #4CC9F0;
        }

        .availability-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 5px;
            margin-top: 10px;
        }

        .day-item {
            text-align: center;
            padding: 8px 5px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 500;
        }

        .day-name {
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 12px;
            color: var(--gray);
        }

        .available {
            background-color: rgba(76, 201, 240, 0.2);
            color: #0277bd;
        }

        .unavailable {
            background-color: var(--light-gray);
            color: var(--gray);
        }

        .btn {
            padding: 10px 20px;
            border-radius: 6px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }

        .btn-outline:hover {
            background-color: rgba(255, 107, 53, 0.05);
        }

        .dashboard-card {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 25px;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .dashboard-title {
            font-size: 22px;
            font-weight: 700;
        }

        .filter-tabs {
            display: flex;
            gap: 5px;
        }

        .filter-tab {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            background-color: transparent;
        }

        .filter-tab.active {
            background-color: var(--primary);
            color: white;
        }

        .filter-tab:not(.active):hover {
            background-color: var(--light-gray);
        }

        .job-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .job-card {
            border: 1px solid var(--light-gray);
            border-radius: 10px;
            padding: 20px;
            transition: var(--transition);
        }

        .job-card:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transform: translateY(-3px);
        }

        .job-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .job-title-company {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .family-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .job-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 3px;
        }

        .family-name {
            color: var(--gray);
            font-size: 15px;
        }

        .job-status {
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .status-applied {
            background-color: rgba(76, 201, 240, 0.15);
            color: #0277bd;
        }

        .status-interview {
            background-color: rgba(255, 193, 7, 0.15);
            color: #ff8f00;
        }

        .status-offer {
            background-color: rgba(76, 175, 80, 0.15);
            color: #2e7d32;
        }

        .status-rejected {
            background-color: rgba(244, 67, 54, 0.15);
            color: #c62828;
        }

        .job-details {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 15px;
        }

        .job-detail {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--gray);
        }

        .job-detail i {
            color: var(--primary);
        }

        .job-description {
            font-size: 14px;
            color: var(--dark);
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .job-actions {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }

        .btn-small {
            padding: 6px 14px;
            font-size: 13px;
        }

        .empty-state {
            text-align: center;
            padding: 40px 20px;
        }

        .empty-icon {
            font-size: 48px;
            color: var(--light-gray);
            margin-bottom: 15px;
        }

        .empty-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .empty-text {
            color: var(--gray);
            margin-bottom: 20px;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-top: 5px;
        }

        .stars {
            color: #ffc107;
        }

        .rating-value {
            font-size: 14px;
            color: var(--gray);
        }

        @media (max-width: 992px) {
            .dashboard {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .job-details {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            
            .job-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .filter-tabs {
                flex-wrap: wrap;
            }
            
            .availability-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }