/* Custom styles for Их цэц website */

/* Base styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* Custom navbar styling */
.navcontainer {
  margin-bottom: 1rem;
}

.main-section {
  min-height: 60vh;
}

.navbar-item.is-active {
  font-weight: bold;
  color: #f5f5f5;
}

/* Form control styling */
.edit-profile-form .level-right .control {
  width: 200px; /* Fixed width for all controls */
  margin-left: 1em;
}

.edit-profile-form .select {
  width: 100%; /* Make select elements fill the control width */
}

.edit-profile-form .select select {
  width: 100%; /* Make select elements fill the control width */
}

/* Mobile responsiveness improvements */  
@media screen and (max-width: 768px) {
  .edit-profile-form .level-right .control {
    width: 100%; /* Full width on mobile */
    margin-left: 0;
  }
}