/* Tuyolar Sayfası CSS - Düzeltilmiş Versiyon */

/* Variables */
:root {
  --primary-color: #ff6b35;
  --secondary-color: #2c3e50;
  --success-color: #27ae60;
  --danger-color: #e74c3c;
  --warning-color: #f39c12;
  --info-color: #3498db;
  --dark-bg: #1a1a2e;
  --darker-bg: #16213e;
  --card-bg: #0f3460;
  --text-light: #ecf0f1;
  --text-muted: #95a5a6;
  --border-color: rgba(52, 73, 94, 0.3);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Container adjustment for alignment */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section - Fixed alignment */
.tuyolar-hero {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  padding: 40px 0 60px 0; /* Reduced top padding */
  margin-top: 0; /* Remove any margin */
  position: relative;
  overflow: hidden;
}

.tuyolar-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b35' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-size: 2.5rem; /* Slightly smaller for better fit */
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Tüyolar Hero alignment fix */
.tuyolar-hero .hero-content {
  max-width: 100%;
  padding: 0;
}

.hero-title i {
  color: var(--primary-color);
  margin-right: 0.8rem;
  font-size: 2.2rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-rules {
  margin-top: 18px;
  padding: 12px 16px;
  background: rgba(15, 52, 96, 0.6);
  border-left: 4px solid var(--warning-color, #f39c12);
  border-radius: 8px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.hero-rules i {
  color: #f39c12;
  margin-top: 2px;
}

.hero-rules strong {
  color: #ffffff;
}


.stat-item {
  text-align: center;
  min-width: 100px;
}

.stat-item i {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--text-light);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Main Content Layout */
.tuyolar-content {
  background: var(--darker-bg);
  min-height: 100vh;
  padding: 40px 0;
}

.tuyolar-grid {
  display: grid;
  grid-template-columns: 320px 1fr 300px;
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Widgets */
.widget {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.widget-title {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.widget-title i {
  color: var(--primary-color);
}

/* Category Widget */
.category-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.95rem;
}

.category-item:hover {
  background: rgba(255, 107, 53, 0.2);
  transform: translateX(5px);
}

.category-item.active {
  background: var(--primary-color);
  color: white;
}

.category-item i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.category-item .count {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.85rem;
}

/* Topics Widget */
.topics-list {
  max-height: 450px;
  overflow-y: auto;
  margin-bottom: 15px;
}

.topics-list::-webkit-scrollbar {
  width: 6px;
}

.topics-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.topics-list::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

.topic-item {
  display: block;
  padding: 12px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-light);
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.topic-item:hover {
  background: rgba(255, 107, 53, 0.15);
  border-left-color: var(--primary-color);
  transform: translateX(3px);
}

.topic-item.active {
  background: rgba(255, 107, 53, 0.25);
  border-left-color: var(--primary-color);
}

.topic-meta {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.topic-icon {
  color: var(--primary-color);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.topic-info h4 {
  font-size: 0.9rem;
  margin-bottom: 5px;
  line-height: 1.3;
  font-weight: 500;
}

.topic-stats {
  display: flex;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.topic-stats i {
  margin-right: 3px;
}

/* Button Styles */
.btn-create-topic {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--primary-color), #ff8c42);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-create-topic:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Main Content Area */
.main-content {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 25px;
  min-height: 600px;
  box-shadow: var(--shadow);
}

/* Topic Detail */
.topic-detail {
  animation: fadeIn 0.5s ease;
}

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

.topic-header {
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.topic-title {
  color: var(--text-light);
  font-size: 1.8rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.topic-metadata {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.topic-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
}

.topic-rating i {
  color: var(--warning-color);
  font-size: 0.9rem;
}

.topic-rating span {
  margin-left: 5px;
  color: var(--text-light);
  font-weight: bold;
}

.topic-content {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 30px;
}

/* Topic Actions */
.topic-actions {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin: 25px 0;
}

.actions-title {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-align: center;
}

.vote-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
}

.vote-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
  border-radius: 8px;
  color: var(--text-light);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vote-btn:hover {
  transform: translateY(-2px);
}

.vote-up:hover {
  background: rgba(39, 174, 96, 0.2);
  border-color: var(--success-color);
}

.vote-down:hover {
  background: rgba(231, 76, 60, 0.2);
  border-color: var(--danger-color);
}

.vote-btn.voted {
  opacity: 0.6;
  cursor: not-allowed;
}

.vote-count {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.85rem;
}

.share-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.share-btn:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

/* Comments Section */
.comments-section {
  margin-top: 30px;
}

.comments-title {
  color: var(--text-light);
  font-size: 1.3rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Comment Form */
.comment-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
}

.comment-form-wrapper h3 {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  color: var(--text-light);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-group label i {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Star Rating */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 5px;
}

.star-rating input {
  display: none;
}

.star-rating label {
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: var(--warning-color);
}

/* Submit Button */
.btn-submit {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary-color), #ff8c42);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Comments List */
.comments-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.comment-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.comment-avatar {
  font-size: 2rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.comment-author {
  color: var(--text-light);
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
}

.comment-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.comment-date i {
  margin-right: 3px;
}

.comment-rating i {
  color: var(--warning-color);
  font-size: 0.8rem;
}

.comment-text {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.comment-video {
  margin: 12px 0;
  border-radius: 8px;
  overflow: hidden;
}

.comment-video iframe {
  border-radius: 8px;
  width: 100%;
  height: 280px;
}

.comment-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.action-btn {
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.action-btn:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: var(--primary-color);
  color: var(--text-light);
}

.action-btn.active {
  background: var(--primary-color);
  color: white;
}

.report-btn:hover {
  background: rgba(231, 76, 60, 0.2);
  border-color: var(--danger-color);
}

/* Sidebar Right */
.sidebar-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Trending Widget */
.trending-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trending-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.trending-item:hover {
  background: rgba(255, 107, 53, 0.15);
}

.trending-rank {
  width: 28px;
  height: 28px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.trending-info h4 {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 3px;
  line-height: 1.3;
}

.trending-stats {
  color: var(--success-color);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 3px;
}

/* Expert Tips Widget */
.expert-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 15px;
}

.expert-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.expert-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.expert-info h4 {
  color: var(--text-light);
  margin: 0;
  font-size: 0.9rem;
}

.expert-info span {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.expert-tip {
  color: var(--text-light);
  line-height: 1.5;
  font-style: italic;
  padding: 10px;
  background: rgba(255, 107, 53, 0.1);
  border-left: 3px solid var(--primary-color);
  border-radius: 4px;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.expert-stats {
  display: flex;
  gap: 15px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.expert-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Safety Widget */
.safety-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.safety-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  padding: 6px 0;
  font-size: 0.85rem;
}

.safety-list i {
  color: var(--success-color);
  font-size: 0.9rem;
}

/* Ad Space */
.ad-space {
  margin-top: 20px;
}

.ad-placeholder {
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed var(--border-color);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  color: var(--text-muted);
}

.ad-placeholder i {
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: block;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.empty-state i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: block;
}

.empty-state h2 {
  color: var(--text-light);
  margin-bottom: 10px;
}

.empty-state p {
  margin-bottom: 20px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.modal-dialog {
  position: relative;
  max-width: 550px;
  margin: 50px auto;
  animation: slideDown 0.3s ease;
}

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

.modal-content {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

.modal-title {
  color: var(--text-light);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--danger-color);
}

.topic-form {
  padding: 20px;
}

.form-info {
  background: rgba(52, 152, 219, 0.1);
  border-left: 3px solid var(--info-color);
  padding: 10px 15px;
  border-radius: 4px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
  font-size: 0.85rem;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 0 20px 20px;
}

.btn-secondary {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-color);
  color: var(--text-light);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-primary {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary-color), #ff8c42);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--card-bg);
  padding: 15px 20px;
  border-radius: 8px;
  color: var(--text-light);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  z-index: 2000;
  max-width: 350px;
}

.notification.show {
  transform: translateX(0);
}

.notification-success {
  border-left: 4px solid var(--success-color);
}

.notification-error {
  border-left: 4px solid var(--danger-color);
}

.notification-warning {
  border-left: 4px solid var(--warning-color);
}

.notification-info {
  border-left: 4px solid var(--info-color);
}

.notification i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .tuyolar-grid {
    grid-template-columns: 280px 1fr;
  }
  
  .sidebar-right {
    display: none;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-title i {
    font-size: 1.6rem;
  }
  
  .tuyolar-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .sidebar-left {
    order: 2;
  }
  
  .main-content {
    order: 1;
    padding: 20px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .vote-buttons {
    flex-direction: column;
  }
  
  .topic-metadata {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .topic-rating {
    margin-left: 0;
  }
  
  .comment-video iframe {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-title i {
    display: none;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .main-content {
    padding: 15px;
  }
  
  .comment-item {
    flex-direction: column;
  }
  
  .comment-avatar {
    font-size: 1.5rem;
  }
  
  .modal-dialog {
    margin: 20px;
    max-width: calc(100% - 40px);
  }
}

/* Loading State */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid var(--text-muted);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.topic-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #ecf0f1;
}

.topic-content p:last-child {
    margin-bottom: 0;
}


/* Turnstile Container */
.cf-turnstile {
  margin: 15px 0;
}

/* Print Styles */
@media print {
  .sidebar-left,
  .sidebar-right,
  .topic-actions,
  .comment-form-wrapper,
  .modal {
    display: none !important;
  }
  
  .tuyolar-grid {
    grid-template-columns: 1fr;
  }
  
  .main-content {
    box-shadow: none;
    background: white;
    color: black;
  }
}