.be-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
}

.be-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.be-header-left h2 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  display: inline-block;
  margin-right: 8px;
}

.be-breadcrumb {
  font-size: 11px;
  color: #6b7280;
  display: inline-block;
}

.be-breadcrumb a {
  color: #6b7280;
  text-decoration: none;
}

.be-breadcrumb a:hover {
  text-decoration: underline;
}

.be-btn-outline {
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: 0.2s;
}

.be-btn-outline:hover {
  background: #f9fafb;
}

.be-btn-primary {
  background: #3b82f6;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}

.be-btn-primary:hover {
  background: #2563eb;
}

.be-btn-black {
  background: #111;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}

.be-btn-black:hover {
  background: #333;
}

/* Upgrade Banner */
.be-upgrade-banner {
  background-color: #fff;
  background-image: radial-gradient(#f3f4f6 1px, transparent 1px);
  background-size: 20px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.be-ub-left {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex: 1;
}

.be-ub-icon {
  width: 40px;
  height: 40px;
  background: #eff6ff;
  color: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.be-ub-content h3 {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.be-badge-red {
  background: #fee2e2;
  color: #b91c1c;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

.be-badge-green {
  background: #dcfce7;
  color: #166534;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

.be-badge-yellow {
  background: #fef9c3;
  color: #854d0e;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

.be-badge-gray {
  background: #f3f4f6;
  color: #374151;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

.be-ub-content p {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.5;
  max-width: 600px;
}

.be-ub-actions {
  display: flex;
  gap: 8px;
}

/* Cloud One Card */
.be-cloud-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.be-cc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.be-cc-left {
  display: flex;
  gap: 20px;
}

.be-cc-logo {
  width: 64px;
  height: 64px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.be-cc-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.be-cc-logo span {
  font-size: 9px;
  font-weight: 600;
  margin-top: 4px;
}

.be-cc-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.be-cc-info p {
  font-size: 11px;
  color: #6b7280;
}

.be-cc-stats {
  display: flex;
  gap: 32px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.be-stat-box {
  display: flex;
  flex-direction: column;
}

.be-stat-val {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.be-stat-lbl {
  font-size: 11px;
  color: #6b7280;
}

.be-cc-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 20px;
}

.be-progress-area {
  flex: 1;
  max-width: 400px;
}

.be-progress-label {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 8px;
}

.be-progress-bar {
  width: 100%;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
}

.be-progress-fill {
  height: 100%;
  background: #3b82f6;
  width: 22%;
  border-radius: 2px;
}

.be-seats {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.be-seats-label {
  font-size: 11px;
  color: #111827;
  font-weight: 600;
  margin-bottom: 6px;
}

.be-avatars {
  display: flex;
}

.be-avatars img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
}
.be-avatars img:first-child {
  margin-left: 0;
}

/* Grid Layout */
.be-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 900px) {
  .be-grid {
    grid-template-columns: 1fr;
  }
}

.be-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.be-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.be-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

/* Details Row */
.be-detail-row {
  display: flex;
  margin-bottom: 12px;
}

.be-detail-row:last-child {
  margin-bottom: 0;
}

.be-detail-label {
  width: 120px;
  font-size: 11px;
  color: #6b7280;
}

.be-detail-value {
  flex: 1;
  font-size: 12px;
  color: #111827;
  font-weight: 500;
}

/* Next Payment Box */
.be-np-box {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.be-np-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.be-np-icon {
  width: 32px;
  height: 32px;
  background: #eff6ff;
  color: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.be-np-info h4 {
  font-size: 12px;
  font-weight: 600;
  color: #111827;
}

.be-np-info p {
  font-size: 11px;
  color: #6b7280;
}

/* Payment Methods */
.be-payment-method {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 12px;
}

.be-payment-method:last-child {
  margin-bottom: 0;
}

.be-pm-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.be-pm-icon {
  width: 36px;
  height: 24px;
  background: #f9fafb;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
}

.be-pm-info h4 {
  font-size: 11px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 2px;
}

.be-pm-info p {
  font-size: 10px;
  color: #6b7280;
}

.be-pm-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.be-pm-btn {
  color: #9ca3af;
  cursor: pointer;
  font-size: 12px;
  transition: 0.15s;
}

.be-pm-btn:hover {
  color: #374151;
}

/* Table */
.be-table-wrapper {
  overflow-x: auto;
}

.be-table {
  width: 100%;
  border-collapse: collapse;
}

.be-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  padding: 10px 12px;
  border-bottom: 1px dashed #e5e7eb;
}

.be-table td {
  padding: 12px;
  font-size: 11px;
  color: #111827;
  border-bottom: 1px dashed #e5e7eb;
}

.be-table tr:last-child td {
  border-bottom: none;
}

.be-table-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
}

.be-table-link:hover {
  text-decoration: underline;
}

.be-view-all {
  text-align: center;
  margin-top: 16px;
}

.be-view-all a {
  font-size: 11px;
  font-weight: 600;
  color: #3b82f6;
  text-decoration: none;
}

.be-view-all a:hover {
  text-decoration: underline;
}

/* Illustration Cards */
.be-illus-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.be-illus-card .be-card-title {
  margin-bottom: 12px;
}

.be-illus-card p {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 60%;
}

.be-illus-card a {
  font-size: 10px;
  font-weight: 700;
  color: #3b82f6;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: auto;
}

.be-illus-card a:hover {
  text-decoration: underline;
}

.be-illus-img {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 120px;
  height: auto;
}
