/* Partners List Styles */
.partners-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
}

.partner-card {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.partner-info {
    flex: 1;
}

.partner-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.partner-info p {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #4a5568;
    font-size: 0.95rem;
}

.partner-info i {
    margin-right: 10px;
    color: #4361ee;
    width: 20px;
}

.partner-status {
    text-align: right;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.status-pending {
    background-color: #fef3c7;
    color: #92400e;
}

.status-approved {
    background-color: #dcfce7;
    color: #166534;
}

.status-rejected {
    background-color: #fee2e2;
    color: #b91c1c;
}

.partner-status p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.view-details-btn {
    background-color: #4361ee;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.view-details-btn:hover {
    background-color: #3651d4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .partner-card {
        flex-direction: column;
        gap: 15px;
    }

    .partner-status {
        text-align: left;
        width: 100%;
    }

    .view-details-btn {
        width: 100%;
    }
}


/* Modal Styles */
.modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40;
    overflow-y: auto;
  }
  
  .modal-backdrop.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem;
  }
  
  .modal-container {
    background-color: white;
    border-radius: 0.75rem;
    width: 100%;
    max-width: 48rem;
    position: relative;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
  }
  
  .tab-button {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .tab-button.active {
    border-bottom-color: #4f46e5;
    color: #1f2937;
  }
  
  .tab-content {
    display: none;
  }
  
  .tab-content.active {
    display: block;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
  }
  
  .image-preview {
    width: 100%;
    height: 200px;
    border: 2px dashed #d1d5db;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .image-preview.has-image {
    border: none;
  }
  
  /* Animation for loading spinner */
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  .spinner {
    border: 3px solid rgba(209, 213, 219, 0.3);
    border-radius: 50%;
    border-top-color: #4f46e5;
    width: 1.5rem;
    height: 1.5rem;
    animation: spin 1s linear infinite;
  }
  
  /* Hide scrollbar for Chrome, Safari and Opera */
  .scrollbar-hide::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
  .scrollbar-hide {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  
  /* Styles for selected package type */
  .selected-type {
    border-color: #4f46e5 !important;
    background-color: rgba(79, 70, 229, 0.05) !important;
    box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.5);
  }
  
  .unselected-type {
    opacity: 0.85;
  }
  
  /* Hover effects */
  .package-type-container:hover,
  .service-checkbox:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }
  
  