/* Valpo Content Machine Custom Styles */

/* Tab button styles */
.tab-btn {
  @apply px-4 py-2 text-sm font-medium text-gray-600 hover:text-gray-900 border-b-2 border-transparent transition-colors;
}

.tab-btn.active {
  @apply text-blue-600 border-blue-600;
}

/* Modal styles */
.modal-backdrop {
  backdrop-filter: blur(2px);
}

/* Content editor styles */
.prose {
  max-width: none;
}

.prose pre {
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  font-family: inherit;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* Animation utilities */
.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Loading states */
.loading {
  @apply opacity-50 pointer-events-none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

/* Form enhancements */
input:focus, textarea:focus, select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Button hover effects */
button {
  transition: all 0.2s ease-in-out;
}

button:hover {
  transform: translateY(-1px);
}

button:active {
  transform: translateY(0);
}

/* Performance prediction bars */
.performance-bar {
  transition: width 0.5s ease-in-out;
}

/* Brand kit cards */
.brand-kit-card {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.brand-kit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Content type badges */
.content-type-badge {
  @apply inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium;
}

.content-type-blog {
  @apply bg-blue-100 text-blue-800;
}

.content-type-social {
  @apply bg-purple-100 text-purple-800;
}

.content-type-email {
  @apply bg-green-100 text-green-800;
}

/* Status badges */
.status-draft {
  @apply bg-gray-100 text-gray-800;
}

.status-review {
  @apply bg-yellow-100 text-yellow-800;
}

.status-approved {
  @apply bg-blue-100 text-blue-800;
}

.status-published {
  @apply bg-green-100 text-green-800;
}

.status-archived {
  @apply bg-red-100 text-red-800;
}

/* Responsive design helpers */
@media (max-width: 768px) {
  .mobile-hidden {
    display: none;
  }
  
  .mobile-full {
    width: 100%;
  }
}

/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }
  
  .print-break {
    page-break-after: always;
  }
}