/* Ultra-thin minimal scrollbar like in your image */

/* For Webkit browsers (Chrome, Safari, Edg-e) */
::-webkit-scrollbar {
  width: 1px; /* Very thin width */
  height: 2px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #010136;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #010136;
}

.logo {
  background-color: white;
  width: 50px;
  height: 50px;
  padding: 5px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  overflow: hidden;
}

.logo > img {
  width: 30px;
  height: 30px;
}

.profile-logo {
  background-color: white;
  width: 30px;
  height: 30px;
  padding: 5px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.profile-logo > img {
  width: 20px;
  height: 20px;
}

.get-started {
  display: none;
}

.img-top {
  object-position: top;
}

.img-bottom {
  object-position: bottom;
}

.img-center {
  object-position: center;
}

.img-left {
  object-position: 40%;
}

.img-right {
  object-position: 85%;
}

.dgb {
  background-color: #ed5145;
  padding-top: 0px;
  justify-content: start;
}

.explore-right {
  width: 300px;
  padding: 0;
  margin: 0;
  background-color: inherit;
}

.figma-img {
  width: 100% !important;
  height: 100% !important;
  margin: 0;
  padding: 5px;
}

.founder-img {
  width: 300px;
  height: 450px !important;
  object-fit: cover;
  margin: 0;
  border-radius: 10px;
  padding: 0;
}

.founder-note {
  text-wrap: wrap;
  width: 300px;
  margin-top: 10px;
}

.nav_menu-wrap {
  grid-column-gap: 40px;
}

.spaced-section-bottom {
  padding-bottom: 50px;
}

input {
  color: rgb(201, 201, 201) !important;
}

.form {
  opacity: 1 !important;
}

/* Add these styles to your existing CSS */

/* Image Upload Styles */
.form-file-wrapper {
  margin-bottom: 1.5rem;
  width: 170px;
  height: 200px;
}

.form-file-label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 90%;
  border: 1px solid var(--background-color--border);
  border-radius: 4px;
  background-color: var(--background-color--background-grey);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.form-file-label:hover {
  border-color: var(--base-color-brand--orange);
}

.form-file-input {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

.form-file-preview {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.form-file-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.form-file-label:hover .form-file-icon {
  opacity: 0.8;
}

.form-file-text {
  color: var(--text-color--text-white);
  opacity: 0.7;
  font-size: 12px;
  text-align: center;
  padding: 0 8px;
}

.form-file-preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.form-file-preview.has-image .form-file-icon,
.form-file-preview.has-image .form-file-text {
  display: none;
}

.form-file-preview.has-image .form-file-preview-image {
  display: block;
}

.form-file-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
}

.form-file-remove:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.form-file-preview.has-image:hover .form-file-remove {
  display: flex;
}

.form-file-remove-icon {
  width: 12px;
  height: 12px;
  color: var(--text-color--text-white);
}

.name-file-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}

.info-input {
  flex: 1;
}

.name-input {
  margin-bottom: 20px;
}

/* Add these styles to your CSS */
.form-field.invalid {
  border-bottom-color: var(--base-color-brand--orange) !important;
}

.form-file-label.invalid {
  border-color: var(--base-color-brand--orange) !important;
}

.form-file-error {
  color: var(--base-color-brand--orange);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

/* Loading state */
.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Animation for error messages */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form requirements styling */
.form-requirements {
  color: var(--text-color--text-white);
  opacity: 0.7;
  border-top: 1px solid var(--background-color--border);
  padding-top: 1rem;
  margin-top: 1rem;
}

.form-requirements div {
  margin-bottom: 0.25rem;
}

/* Auto-save indicator */
.auto-save-indicator {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background-color: var(--background-color--background-grey);
  color: var(--text-color--text-white);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.auto-save-indicator.show {
  opacity: 0.8;
  transform: translateY(0);
}

textarea{
  color: rgb(201, 201, 201) !important;
}

/* === RESPONSIVE STYLES === */

/* For tablets and larger mobile devices */
@media screen and (max-width: 991px) {
  .name-file-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .info-input {
    order: 2;
    width: 100%;
  }
  
  .form-file-wrapper {
    order: 1;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .form-file-label {
    width: 200px;
    height: 250px;
  }
}

/* For mobile devices */
@media screen and (max-width: 767px) {
  .name-file-wrapper {
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    gap: 1.5rem;
  }
  
  .info-input {
    width: 100%;
    order: 2;
  }
  
  .form-field_wrapper {
    width: 100%;
  }
  
  /* Make form inputs full width */
  .form-field {
    width: 100% !important;
    box-sizing: border-box;
  }
  
  .form-file-wrapper {
    width: 100%;
    order: 1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Larger photo preview for mobile */
  .form-file-label {
    width: 150px;
    height: 180px;
    max-width: 200px;
    max-height: 240px;
  }
  
  .form-file-icon {
    width: 48px;
    height: 48px;
  }
  
  .form-file-text {
    font-size: 12px;
    padding: 0 16px;
  }
  
  .field-error, .form-file-error {
    font-size: 0.75rem;
    width: 100%;
    text-align: center;
  }
}

/* For very small mobile devices */
@media screen and (max-width: 480px) {
  .name-file-wrapper {
    gap: 1rem;
  }
  
  /* Even larger photo preview for very small screens */
  .form-file-label {
    width: 140px;
    height: 170px;
  }
  
  .form-file-wrapper {
    align-items: center;
    text-align: center;
  }
  
  .form-file-label {
    margin: 0 auto;
  }
  
  /* Ensure labels and inputs stack properly */
  .form-field_wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
  }
  
  .form-field_wrapper label {
    margin-bottom: 0.5rem;
    width: 100%;
  }
}

.success-message{
  margin-top: 10px;
}

/* For landscape orientation on mobile */
@media screen and (max-height: 600px) and (orientation: landscape) {
  .form-file-label {
    width: 120px;
    height: 150px;
  }
  
  .name-file-wrapper {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .info-input {
    width: 60%;
  }
  
  .form-file-wrapper {
    width: 35%;
  }
}

/* Make sure form container adapts properly */
.contact-right {
  width: 100%;
}

.form-block {
  width: 100%;
}

.form-fields_component {
  width: 100%;
}



        /* Add these styles for the action buttons */
        .action-buttons {
            display: flex;
            flex-direction: column;
            gap: 5px;
            min-width: 150px;
        }
        
        .status-btn {
            padding: 6px 12px;
            border: none;
            border-radius: 4px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .status-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        .btn-pending {
            background-color: #ffd700;
            color: #333;
        }
        
        .btn-under-review {
            background-color: #4a90e2;
            color: white;
        }
        
        .btn-approved {
            background-color: #28a745;
            color: white;
        }
        
        .btn-rejected {
            background-color: #dc3545;
            color: white;
        }
        
        .status-btn.active {
            box-shadow: inset 0 0 0 2px #fff;
            font-weight: bold;
        }
        
        .status-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }
        
        .status-updating {
            opacity: 0.7;
            position: relative;
        }
        
        .status-updating::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 16px;
            height: 16px;
            margin: -8px 0 0 -8px;
            border: 2px solid rgba(255,255,255,0.3);
            border-top-color: #fff;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .toast {
            position: fixed;
            bottom: 20px;
            right: 20px;
            padding: 12px 20px;
            border-radius: 4px;
            color: white;
            font-weight: 500;
            z-index: 1000;
            animation: slideIn 0.3s ease;
        }
        
        .toast.success {
            background-color: #28a745;
        }
        
        .toast.error {
            background-color: #dc3545;
        }
        
        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }


        