/* Dialog box styling */
.observer-dialog {
    border: none; /* remove default black border */
    border-radius: 16px; /* rounded corners */
    padding: 0;
    max-width: 380px; /* slightly smaller dialog */
    width: 85%;
    background-color: #fff; /* white background */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* soft shadow for depth */
}

/* Dialog content */
.dialog-content {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 1.2em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: justify; /* make all text justified */
}

/* Dialog title */
.dialog-content h3 {
    margin: 0;
    color: #007BFF;
    font-size: 1.4em; /* bigger letters */
    text-align: center;
}

/* Paragraph text */
.dialog-content p {
    font-size: 1.1em; /* bigger letters */
    color: #333;
    text-align: justify; /* justify text */
    line-height: 1.4;
}

/* Buttons container */
.dialog-buttons {
    display: flex;
    justify-content: center; /* center buttons horizontally */
    align-items: center;     /* center buttons vertically if needed */
    gap: 12px;
    margin-top: 20px;
}

/* Buttons */
.btn {
    padding: 9px 22px;
    border-radius: 8px;
    border: none;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-yes {
    background-color: #007BFF;
    color: white;
}

.btn-yes:hover {
    background-color: #0056b3;
}

.btn-no {
    background-color: #e0e0e0;
    color: #333;
}

.btn-no:hover {
    background-color: #c7c7c7;
}

/* Modal overlay */
.observer-dialog::backdrop {
    background: rgba(0,0,0,0.5);

}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #444; /* text color */
  font-weight: bold;
  font-size: 1.1rem;
  margin: 1.5em 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc; /* line color */
}

.divider:not(:empty)::before {
  margin-right: 0.75em;
}
.divider:not(:empty)::after {
  margin-left: 0.75em;
}
