/**
 * Paragraph ID Display Styles
 * Styles for showing paragraph IDs to users with edit permissions
 */

.paragraph-id {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 11px;
  font-family: monospace;
  z-index: 1000;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.paragraph-id:hover {
  opacity: 1;
}

.paragraph-id .paragraph-id-label {
  font-weight: bold;
}

.paragraph-id .paragraph-id-value {
  margin-left: 2px;
}

/* Make sure parent paragraph has relative positioning */
.paragraph {
  position: relative;
}

/* Additional styling for admin themes */
.gin-theme .paragraph-id,
.claro-theme .paragraph-id,
.seven-theme .paragraph-id {
  background: #1976d2;
  color: #fff;
}

/* Hide by default, show only when user has permissions */
.paragraph-id {
  display: none;
}

body.show-paragraph-ids .paragraph-id {
  display: block;
}

.paragraph-id-display {
  display: inline-block;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.75rem;
  color: #666;
  z-index: 10;
  margin-bottom: 5px;
  float: right;
  clear: both;
}
.paragraph-content-center {
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.paragraph-column-card {
    border: none !important;
}

.card-container {
    width: 100%;
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
    /*min-height: 500px;*/
}

.image-paragraph {
    margin-bottom: 30px;
}