/**
 * MBW Company Access Public Styles
 */

/* Loading states */
.mbw-company-requests-section {
  position: relative;
}

.mbw-company-requests-section.mbw-loading {
  pointer-events: none;
  opacity: 0.6;
}

.mbw-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 10;
}

.mbw-spinner {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #3498db;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: mbw-spin 1s linear infinite;
  margin-bottom: 10px;
}

@keyframes mbw-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.mbw-loading-text {
  font-size: 14px;
  color: #666;
}

.mbw-company-requests-section {
  margin-top: 32px;
}

/* Success message */
.mbw-success-message {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 10px 15px;
  margin-bottom: 15px;
  border-radius: 4px;
  font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mbw-loading-overlay {
    font-size: 12px;
  }
  
  .mbw-spinner {
    width: 16px;
    height: 16px;
  }
}
