/**
 * Name Tags CSS
 * @since 1.0.0
 * @version 1.0.0
 * @author  Sasky Samonte
 */

/* Wrapper */
.nametag-wrapper {
    max-width: 750px;
    margin: 0 auto;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #111;
}

/* Section Card */
.nametag-section {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

/* Section Titles */
.nametag-section h3 {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
    color: #000;
}

.nametag-section-info-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.nametag-section-info p {
  font-size: 12px;
  color: #767676;
}


.nametag-items {
	display: flex;
    flex-direction: column;
	align-items: center;
    gap: 8px;
}

.nametag-wrapper-no-found {
	min-height: 400px;
	display: flex;
    flex-direction: column;
    justify-content: center;
}

.nametag-wrapper-no-found p {
	text-align: center;
}

.nametag-wrapper-no-found p.error-message {
	color: red;
}

/* Timeline Table */
.nametags-timeline-table {
    width: 100%;
    border-collapse: collapse;
}

/* Timeline Rows */
.nametags-timeline-table tr {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Timeline Cells */
.nametags-timeline-table td {
    padding: 8px 12px;
    vertical-align: top;
}

/* Date Column */
.nametags-date {
    font-size: 0.85rem;
    color: #222;
    white-space: nowrap;
    text-align: right;
    min-width: 140px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Timeline Column */
.nametags-timeline-table td:nth-child(2) {
    width: 60px;
    text-align: center;
    position: relative;
}

/* Dot */
.nametags-dot {
    width: 12px;
    height: 12px;
    background-color: #000; /* solid black for Chanel precision */
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Vertical Line */
.nametags-line {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: calc(100% - 12px);
    background-color: #e5e5e5; /* softer luxury gray */
    z-index: 1;
}

/* Status Text Bubble */
.nametags-status-text {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.6;
    color: #111;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.nametags-status-text:hover {
    background: #fafafa;
}

/* Icon */
.nametags-status-icon {
    font-size: 18px;
    color: #000;
    flex-shrink: 0;
}

/* Small details */
.nametags-status-text small {
    display: block;
    font-size: 0.8rem;
    color: #555;
    margin-top: 4px;
}


/* General Container */
.nametag-field-container {
  max-width: 600px;
  margin-bottom: 20px;
  padding: 10px 20px;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #111;
}

/* Field Groups */
.nametag-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.nametag-field label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: #111;
}

/* Inputs & Select */
.nametag-field input,
.nametag-field select {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fafafa;
  transition: all 0.3s ease;
}

.nametag-field input:focus,
.nametag-field select:focus {
  border-color: #000;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}

/* Checkbox Section */
.nametag-checkbox {
  padding: 2px;
  font-size: 12px;
  line-height: 1.6;
}

.nametag-checkbox p {
  color: #333;
}

.nametag-checkbox label {
  display: flex;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}

.nametag-checkbox input[type="checkbox"] {
  margin-right: 0.5rem;
  accent-color: black;
  transform: scale(1.2);
}

/* Placeholder Styling */
.nametag-field input::placeholder {
  color: #aaa;
  font-size: 0.9rem;
}

/* Luxury Feel - Hover & Focus */
.nametag-field input:hover,
.nametag-field select:hover {
  border-color: #000;
}

/* Submit Button (if needed) */
button.submit-btn {
  margin-top: 2rem;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

button.submit-btn:hover {
  background: #222;
}

.nametag-information {
  margin-bottom: 20px;
}

.nametag-information p {
	font-size: 14px;
	display: flex;
    flex-direction: column;
}

@media(max-width: 600px) {
    .nametags-date {
        font-size: 13px;
    }
}