/**
 * ICA Formatters CSS
 * 自定义字段格式化器样式
 */

/* Company Link 样式 */
.company-link {
  display: inline-block;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.company-link:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Job Apply Button 样式 */
.job-apply-button {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.job-apply-button:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.job-apply-button i {
  margin-right: 8px;
}

/* Bootstrap兼容样式 */
.btn.company-link {
  border: none;
}

.btn.job-apply-button {
  border: none;
}

/* 响应式样式 */
@media (max-width: 768px) {
  .company-link,
  .job-apply-button {
    display: block;
    text-align: center;
    margin: 5px 0;
  }
}
