/*
Theme Name: WeHired Premium
Theme URI: https://wehired.agency/
Author: WeHired Agency
Author URI: https://wehired.agency/
Description: Premium Custom Theme for WeHired Agency. Features an integrated CPA Lead Gen funnel, high conversion AdSense layouts, and OpenAI automated job offer generator. Built for speed and SEO optimization.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wehired
*/

/* -------------------------------------------------------------------------- */
/* 1. CSS Variables & Base Setup                                              */
/* -------------------------------------------------------------------------- */
:root {
  --primary-color: #0d6efd;
  /* Trustworthy blue */
  --primary-hover: #0b5ed7;
  --secondary-color: #6c757d;
  --bg-color: #f8f9fa;
  /* Very light gray */
  --text-dark: #212529;
  --text-light: #6c757d;
  --white: #ffffff;
  --border-color: #e9ecef;
  --success-color: #198754;
  --danger-color: #dc3545;
  --shadow-sm: 0 .125rem .25rem rgba(0, 0, 0, .075);
  --shadow-md: 0 .5rem 1rem rgba(0, 0, 0, .15);
  --border-radius: 8px;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* -------------------------------------------------------------------------- */
/* 2. Global Layout & Container                                               */
/* -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-branding .logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.wehired-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wehired-logo svg {
  transition: transform 0.3s ease;
}

.logo-link:hover .wehired-logo svg {
  transform: rotate(-10deg) scale(1.1);
}

.site-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.site-name .text-accent {
  color: var(--primary-color);
}

/* Dark Mode Support for Logo */
body.wehired-dark-mode .site-name {
  color: var(--white);
}

.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.wehired-logo.mini {
  gap: 8px;
}

.wehired-logo.mini .site-name {
  font-size: 1.2rem;
}

.footer-logo-link {
  text-decoration: none;
}

body.wehired-dark-mode .footer-branding {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.site-title a {
  color: var(--text-dark);
  text-decoration: none;
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Unified Navigation Styling */
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  align-items: center;
}

.main-navigation li {
  position: relative;
  display: inline-block;
}

.main-navigation a {
  color: #4a5568;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 8px 0;
  display: block;
}

.main-navigation a:hover {
  color: var(--primary-color);
}

.main-navigation .current-menu-item>a,
.main-navigation .current_page_item>a {
  color: var(--primary-color);
}

.main-navigation .current-menu-item>a::after,
.main-navigation .current_page_item>a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

/* WordPress Fallback Menu specific cleanups */
.main-navigation .menu>ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

/* Mobile Toggle placeholder (if needed later) */
.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .main-navigation ul {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.site-main {
  padding: 40px 0;
  min-height: calc(100vh - 200px);
  /* rough height minus header/footer */
}

/* Page / Default Content Formatting (Crucial for existing pages) */
.page-content,
.post-content {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.page-content h1,
.post-content h1,
.page-content h2,
.post-content h2,
.page-content h3,
.post-content h3 {
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  color: var(--text-dark);
}

.page-content h1:first-child,
.post-content h1:first-child {
  margin-top: 0;
}

.page-content p,
.post-content p {
  margin-bottom: 1.5em;
}

.page-content ul,
.post-content ul,
.page-content ol,
.post-content ol {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}

.site-footer {
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
  text-align: center;
  margin-top: auto;
}

/* -------------------------------------------------------------------------- */
/* 3. Job Listings (Grid)                                                     */
/* -------------------------------------------------------------------------- */
.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.job-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  padding: 25px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.job-meta {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.job-meta span {
  background: var(--bg-color);
  padding: 4px 10px;
  border-radius: 20px;
}

.job-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.job-title a {
  color: var(--text-dark);
}

.job-excerpt {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--white) !important;
  border-radius: var(--border-radius);
  text-align: center;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn:hover {
  background-color: var(--primary-hover);
}

.btn-block {
  display: block;
  width: 100%;
}

/* -------------------------------------------------------------------------- */
/* 4. Single Job Post Layout                                                  */
/* -------------------------------------------------------------------------- */
.single-job-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

@media (max-width: 991px) {
  .single-job-layout {
    grid-template-columns: 1fr;
  }
}

.job-header {
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.job-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* Sticky Sidebar for Apply Form */
.job-sidebar-inner {
  position: sticky;
  top: 90px;
}

/* -------------------------------------------------------------------------- */
/* 5. CPA Application Form Styles                                             */
/* -------------------------------------------------------------------------- */
.apply-widget {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 30px;
  border-top: 4px solid var(--primary-color);
}

.apply-widget h3 {
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.file-upload-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
}

.file-upload-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
  height: 100%;
}

.file-upload-btn {
  border: 2px dashed var(--border-color);
  background: var(--bg-color);
  color: var(--text-light);
  padding: 20px;
  text-align: center;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.2s;
}

.file-upload-wrapper:hover .file-upload-btn {
  border-color: var(--primary-color);
  background: rgba(13, 110, 253, 0.05);
}

.form-notice {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 15px;
  text-align: center;
}

/* Form states */
.form-message {
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 15px;
  display: none;
}

.form-message.success {
  background-color: #d1e7dd;
  color: #0f5132;
  border: 1px solid #badbcc;
  display: block;
}

.form-message.error {
  background-color: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
  display: block;
}

.spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn.loading .btn-text {
  display: none;
}

.btn.loading .spinner {
  display: block;
}

.btn.loading {
  cursor: not-allowed;
  opacity: 0.8;
}

/* -------------------------------------------------------------------------- */
/* 6. AdSense Integrations                                                    */
/* -------------------------------------------------------------------------- */
.ad-slot {
  text-align: center;
  margin: 20px 0;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 0.8rem;
}

.ad-slot-header {
  margin: 20px auto;
  max-width: 728px;
}

.ad-slot-sidebar {
  margin-bottom: 30px;
  min-height: 250px;
}

.ad-slot-in-content {
  margin: 30px 0;
}

/* -------------------------------------------------------------------------- */
/* 7. Landing Page: Hero Section                                               */
/* -------------------------------------------------------------------------- */
.hero-section {
  background: linear-gradient(135deg, #0a1628 0%, #1a365d 40%, #0d6efd 100%);
  color: var(--white);
  padding: 80px 20px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(13, 110, 253, 0.3) 0%, transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(99, 102, 241, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.85;
    transform: scale(1.02);
  }
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* Search Bar */
.hero-search {
  max-width: 600px;
  margin: 0 auto 20px;
}

.search-wrapper {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 50px;
  padding: 6px 6px 6px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s;
}

.search-wrapper:focus-within {
  box-shadow: 0 8px 40px rgba(13, 110, 253, 0.4);
}

.search-icon {
  font-size: 1.2rem;
  margin-right: 10px;
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: var(--font-family);
  color: var(--text-dark);
  background: transparent;
  min-width: 0;
}

.search-input::placeholder {
  color: #aaa;
}

.search-btn {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  font-family: var(--font-family);
}

.search-btn:hover {
  background: var(--primary-hover);
}

/* Popular Searches */
.popular-searches {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.popular-searches a {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  transition: all 0.2s;
}

.popular-searches a:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

/* -------------------------------------------------------------------------- */
/* 8. Landing Page: Trust Stats Bar                                            */
/* -------------------------------------------------------------------------- */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 30px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* -------------------------------------------------------------------------- */
/* 9. Landing Page: Section Styles                                             */
/* -------------------------------------------------------------------------- */
.section-categories,
.section-featured,
.section-how {
  padding: 60px 0;
}

.section-featured {
  background: var(--bg-color);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.section-desc {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* -------------------------------------------------------------------------- */
/* 10. Landing Page: Category Cards                                            */
/* -------------------------------------------------------------------------- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 15px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: all 0.25s ease;
  text-align: center;
  color: var(--text-dark) !important;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.cat-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cat-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.cat-count {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* -------------------------------------------------------------------------- */
/* 11. Landing Page: Steps (How it Works)                                      */
/* -------------------------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  text-align: center;
  padding: 30px 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #6366f1);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* -------------------------------------------------------------------------- */
/* 12. Landing Page: Final CTA                                                 */
/* -------------------------------------------------------------------------- */
.section-final-cta {
  background: linear-gradient(135deg, #0a1628 0%, #1a365d 60%, #0d6efd 100%);
  color: var(--white);
  text-align: center;
  padding: 70px 20px;
}

.section-final-cta h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-final-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Button Variants */
.btn-outline {
  background: transparent;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color);
  padding: 12px 30px;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white) !important;
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(13, 110, 253, 0.4);
}

.btn-large:hover {
  box-shadow: 0 6px 25px rgba(13, 110, 253, 0.5);
}

/* -------------------------------------------------------------------------- */
/* 13. Responsive Design                                                       */
/* -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-section {
    padding: 50px 15px 60px;
  }

  .search-wrapper {
    flex-direction: column;
    border-radius: 12px;
    padding: 12px;
  }

  .search-icon {
    display: none;
  }

  .search-input {
    width: 100%;
    padding: 10px;
    text-align: center;
  }

  .search-btn {
    width: 100%;
    margin-top: 8px;
    border-radius: 8px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-final-cta h2 {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

/* -------------------------------------------------------------------------- */
/* 14. Page Templates Styles                                                     */
/* -------------------------------------------------------------------------- */

/* Standard Page Layout */
.page-layout {
  padding: 40px 0;
  max-width: 800px;
  margin: 0 auto;
}

.entry-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.entry-content {
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Custom Landing Page Template */
.landing-hero {
  background: linear-gradient(135deg, #0a1628 0%, #1a365d 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  margin-bottom: 50px;
}

.landing-title {
  font-size: 3.5rem;
  font-weight: 850;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.landing-subtitle {
  font-size: 1.4rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 30px;
}

.landing-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  padding: 40px 0;
}

.landing-content {
  font-size: 1.15rem;
  line-height: 1.8;
}

.sticky-apply-box {
  position: sticky;
  top: 100px;
}

.apply-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #edf2f7;
}

.apply-card h3 {
  margin-top: 0;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.apply-card p {
  color: #718096;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.trust-badges {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge-item {
  background: #f7fafc;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d3748;
  display: flex;
  align-items: center;
  gap: 10px;
}

.landing-related {
  background: #f8fafc;
  padding: 80px 0;
  margin-top: 80px;
}

@media (max-width: 992px) {
  .landing-layout {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .landing-hero {
    padding: 60px 20px;
  }

  .landing-title {
    font-size: 2.5rem;
  }
}

/* Blank Landing Styles */
.landing-blank-wrapper {
  padding: 80px 0;
  max-width: 900px;
  margin: 0 auto;
}

.blank-layout {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blank-content {
  font-size: 1.15rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .landing-blank-wrapper {
    padding: 40px 15px;
  }

  .blank-layout {
    padding: 25px;
  }
}

/* ==========================================================================
   Social Proof Notifications (Activity Bubble)
   ========================================================================== */
.wehired-notif {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 350px;
  transform: translateX(-120%);
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.wehired-notif.active {
  transform: translateX(0);
}

.notif-icon {
  width: 40px;
  height: 40px;
  background: #4caf50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.notif-content {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #333;
}

.notif-content b {
  color: #0061ff;
  font-weight: 700;
}

.notif-content a {
  text-decoration: none;
  color: #333;
  display: block;
}

.notif-time {
  display: block;
  font-size: 0.75rem;
  color: #888;
  margin-top: 3px;
}

@media (max-width: 768px) {
  .wehired-notif {
    bottom: 20px;
    left: 10px;
    right: 10px;
    max-width: none;
  }
}