/* Custom styles for SKRIP AI */

/* Global styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Animation */
.fade-in {
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Card styles */
.card {
  transition: all 0.3s ease;
  border-radius: 10px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Button styles */
.btn {
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-primary {
  background-color: #4361ee;
  border-color: #4361ee;
}

.btn-primary:hover {
  background-color: #3a56d4;
  border-color: #3a56d4;
}

.btn-outline-primary {
  color: #4361ee;
  border-color: #4361ee;
}

.btn-outline-primary:hover {
  background-color: #4361ee;
  border-color: #4361ee;
}

/* Navbar styles */
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 1px;
}

/* Form styles */
.form-control, .input-group-text {
  border-radius: 5px;
}

.form-control:focus {
  border-color: #4361ee;
  box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
}

.input-group-text {
  background-color: #f8f9fa;
  color: #6c757d;
}

/* Hero section */
.hero-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

/* Footer styles */
footer {
  background-color: #343a40;
  color: #f8f9fa;
  padding: 2rem 0;
}

footer a {
  color: #f8f9fa;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #4361ee;
}

/* Admin dashboard */
.table th {
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .display-4 {
    font-size: 2.5rem;
  }
}