@charset "UTF-8";
@media (min-width: 576px) {
    .card-columns {
        column-count: 3;
    }
}

@media (min-width: 768px) {
    .card-columns {
        column-count: 3;
    }
}

.card .content {
  position: absolute; /* Position the background text */
  bottom: 0; /* At the bottom. Use top:0 to append it to the top */
  background: rgb(0, 0, 0); /* Fallback color */
  background: rgba(0, 0, 0, 0.5); /* Black background with 0.5 opacity */
  color: #f1f1f1; /* Grey text */
  width: 100%; /* Full width */
  padding: 20px; /* Some padding */
}

/* Job Card Styles */
.job-card {
  width: 100%;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

 .job-card:hover {
/*   transform: translateY(-5px); */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
} 

.job-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
} 

.company-logo {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  margin-right: 15px;
}

.job-info h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.company-name {
  margin: 5px 0;
  font-size: 14px;
  color: #666;
}

.location, .job-type {
  margin: 0;
  font-size: 12px;
  color: #888;
}

.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background-color: #e0e7ff;
  color: #3b82f6;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

/* Skeleton Loading Styles */
.skeleton {
  animation: shimmer 1.5s infinite linear;
  background: linear-gradient(to right, #f0f0f0 8%, #e0e0e0 18%, #f0f0f0 33%);
  background-size: 800px 104px;
  position: relative;
}

@keyframes shimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}

.skeleton-logo {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background-color: #e0e0e0;
  margin-right: 15px;
}

.skeleton-title {
  width: 60%;
  height: 20px;
  background-color: #e0e0e0;
  margin-bottom: 10px;
}

.skeleton-text {
  width: 80%;
  height: 15px;
  background-color: #e0e0e0;
  margin-bottom: 8px;
}

.skeleton-tag {
  width: 60px;
  height: 20px;
  background-color: #e0e0e0;
  margin-right: 8px;
  border-radius: 12px;
}