/* Main Styles for Sikati Enterprises Admin Dashboard */

/* Custom page header styling */
.navbar-brand strong {
  letter-spacing: 0.5px;
}

/* Cards styling */
.card {
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Form elements styling */
.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Table styling */
.table-responsive {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.table img {
  object-fit: cover;
  height: 60px;
  width: 80px;
}

.table .btn-group {
  white-space: nowrap;
}

/* Delete form styling */
.delete-form {
  display: inline;
}

/* Dashboard page styling */
h1 {
  font-weight: 700;
  color: #343a40;
  margin-bottom: 1.5rem;
}

/* Alert styling */
.alert {
  border-radius: 8px;
}

/* Image preview styling */
#imagePreview img {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Drag and drop styling */
.dropzone-container {
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: #f8f9fa;
}

.dropzone-container:hover {
  border-color: #0d6efd;
  background-color: #f1f8ff;
}

.dropzone-container.border-primary {
  border-color: #0d6efd;
  background-color: #f1f8ff;
  border-style: dashed;
}

.upload-prompt {
  color: #6c757d;
}

.upload-prompt i {
  color: #adb5bd;
  transition: color 0.3s ease;
}

.dropzone-container:hover .upload-prompt i {
  color: #0d6efd;
}

/* Custom button styling */
.btn {
  border-radius: 6px;
  font-weight: 500;
}

.btn-primary {
  background-color: #0d6efd;
}

.btn-primary:hover {
  background-color: #0b5ed7;
}

/* Footer styling */
footer {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid #dee2e6;
}

/* Technology tags styling */
.tag-container {
  margin-top: 10px;
}

.tag-container .badge {
  margin-right: 5px;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.tag-container .badge:hover {
  background-color: #0b5ed7;
}

.tag-container .btn-close {
  font-size: 0.65em;
  margin-left: 5px;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
  .table th, .table td {
    padding: 0.5rem;
  }
  
  .btn {
    padding: 0.25rem 0.5rem;
  }
}
