/**
 * Let's Meet România Core - Frontend styles
 * Va fi extins în v0.3 (Profil), v0.4 (Editare), v0.5 (Galerie) etc.
 */
.lmr-wrap {
	max-width: 1000px;
	margin: 0 auto;
}

.lmr-notice {
	text-align: center;
	padding: 40px 20px;
}

.lmr-button {
	display: inline-block;
	padding: 10px 24px;
	background: #e63e6d;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
}

/* Shell comun pentru paginile de cont: Dashboard, Editare profil, Galerie, Mesaje, Favorite (v1.0) */
.lmr-app {
	display: flex;
	gap: 30px;
	align-items: flex-start;
	padding: 30px 0;
}

.lmr-app__sidebar {
	flex: 0 0 220px;
	background: #fafafa;
	border: 1px solid #eee;
	border-radius: 6px;
	padding: 20px;
	position: sticky;
	top: 20px;
}

.lmr-app__user {
	text-align: center;
	margin-bottom: 20px;
}

.lmr-app__user img {
	border-radius: 50%;
}

.lmr-app__username {
	font-weight: 600;
	margin-top: 8px;
}

.lmr-app__menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lmr-app__menu li {
	border-bottom: 1px solid #eee;
}

.lmr-app__menu li:last-child {
	border-bottom: none;
}

.lmr-app__menu li a {
	display: block;
	padding: 10px 4px;
	color: #333;
	text-decoration: none;
}

.lmr-app__menu li.is-active a {
	color: #e63e6d;
	font-weight: 600;
}

.lmr-badge {
	display: inline-block;
	font-size: 11px;
	font-style: normal;
	background: #eee;
	color: #888;
	padding: 2px 6px;
	border-radius: 3px;
	margin-left: 6px;
}

.lmr-app__logout {
	display: block;
	margin-top: 16px;
	padding-top: 12px;
	border-top: 1px solid #eee;
	color: #999;
	text-decoration: none;
	font-size: 13px;
	text-align: center;
}

.lmr-app__logout:hover {
	color: #e63e6d;
}

.lmr-app__content {
	flex: 1;
	min-width: 0;
}

.lmr-dashboard__notice {
	margin-top: 20px;
	padding: 15px;
	background: #f4f6ff;
	border-left: 3px solid #6c7bff;
	border-radius: 3px;
}

@media (max-width: 700px) {
	.lmr-app {
		flex-direction: column;
	}

	.lmr-app__sidebar {
		flex: 1 1 auto;
		width: 100%;
		position: static;
	}
}


/* Profil public (v0.3) */
.lmr-profile__header {
	text-align: center;
	padding: 30px 0;
}

.lmr-profile__header img {
	border-radius: 50%;
}

.lmr-profile__header h1 {
	margin: 12px 0 4px;
}

.lmr-profile__own-notice {
	color: #888;
	font-size: 13px;
}

.lmr-favorite-button {
	display: inline-block;
	margin-top: 10px;
	background: #fff;
	color: #e63e6d;
	border: 1px solid #e63e6d;
}

.lmr-favorite-button.is-favorited {
	background: #e63e6d;
	color: #fff;
}

.lmr-profile__actions {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 10px;
	flex-wrap: wrap;
}

.lmr-message-button {
	background: #fff;
	color: #333;
	border: 1px solid #ddd;
}

/* Mesaje (v0.9) */
.lmr-messages-back {
	margin-bottom: 16px;
}

.lmr-messages-back a {
	color: #999;
	text-decoration: none;
}

.lmr-messages-page h1 {
	display: flex;
	align-items: center;
	gap: 10px;
}

.lmr-messages-page h1 img {
	border-radius: 50%;
}

.lmr-conversations {
	display: flex;
	flex-direction: column;
	border: 1px solid #eee;
	border-radius: 8px;
	overflow: hidden;
}

.lmr-conversation {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	text-decoration: none;
	color: inherit;
	border-bottom: 1px solid #eee;
	position: relative;
}

.lmr-conversation:last-child {
	border-bottom: none;
}

.lmr-conversation:hover {
	background: #fafafa;
}

.lmr-conversation.is-unread {
	background: #fff7f9;
}

.lmr-conversation__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.lmr-conversation__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.lmr-conversation__name {
	font-weight: 600;
}

.lmr-conversation.is-unread .lmr-conversation__name {
	font-weight: 700;
}

.lmr-conversation__snippet {
	font-size: 13px;
	color: #999;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lmr-conversation__time {
	font-size: 12px;
	color: #bbb;
	flex-shrink: 0;
}

.lmr-conversation__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #e63e6d;
	flex-shrink: 0;
}

.lmr-thread {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 20px 0;
	max-height: 500px;
	overflow-y: auto;
	padding: 4px;
}

.lmr-thread__message {
	display: flex;
	flex-direction: column;
	max-width: 70%;
}

.lmr-thread__message.is-mine {
	align-self: flex-end;
	align-items: flex-end;
}

.lmr-thread__message.is-theirs {
	align-self: flex-start;
	align-items: flex-start;
}

.lmr-thread__bubble {
	padding: 10px 14px;
	border-radius: 14px;
	white-space: pre-wrap;
	word-break: break-word;
}

.lmr-thread__message.is-mine .lmr-thread__bubble {
	background: #e63e6d;
	color: #fff;
	border-bottom-right-radius: 4px;
}

.lmr-thread__message.is-theirs .lmr-thread__bubble {
	background: #f0f0f0;
	color: #333;
	border-bottom-left-radius: 4px;
}

.lmr-thread__time {
	font-size: 11px;
	color: #bbb;
	margin-top: 3px;
}

.lmr-message-form {
	display: flex;
	gap: 10px;
	align-items: flex-end;
}

.lmr-message-form textarea {
	flex: 1;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-family: inherit;
	resize: vertical;
}

.lmr-message-form .lmr-button {
	border: none;
	cursor: pointer;
	padding: 10px 20px;
}

.lmr-badge--unread {
	background: #e63e6d;
	color: #fff;
}

/* Autentificare / Înregistrare / Recuperare parolă (v1.0) */
.lmr-auth {
	max-width: 420px;
	padding: 40px 0;
}

.lmr-auth-form {
	display: flex;
	flex-direction: column;
}

.lmr-auth-form .lmr-button {
	border: none;
	cursor: pointer;
	margin-top: 8px;
}

.lmr-form__row--checkbox label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 400;
	cursor: pointer;
}

.lmr-form__row--checkbox input[type="checkbox"] {
	width: auto;
}

.lmr-auth-links {
	margin-top: 20px;
	text-align: center;
	font-size: 14px;
	color: #999;
}

.lmr-auth-links a {
	color: #e63e6d;
	text-decoration: none;
}

.lmr-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.lmr-form__label-text {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}

.lmr-form__radio-group {
	display: flex;
	gap: 20px;
}

.lmr-form__radio-group label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 400;
	cursor: pointer;
}

.lmr-form__radio-group input[type="radio"] {
	width: auto;
}

.lmr-profile__fields {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	margin: 20px 0;
}

.lmr-profile__field {
	background: #fafafa;
	border: 1px solid #eee;
	border-radius: 6px;
	padding: 12px 16px;
}

.lmr-profile__field-label {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #999;
	margin-bottom: 4px;
}

.lmr-profile__field-value {
	font-size: 15px;
}

.lmr-profile__field-value em {
	color: #bbb;
	font-style: normal;
}

.lmr-profile__bio {
	margin-top: 30px;
}

/* Editare profil (v0.4) */
.lmr-form-notice {
	padding: 12px 16px;
	border-radius: 4px;
	margin-bottom: 20px;
}

.lmr-form-notice--success {
	background: #eafaf0;
	border-left: 3px solid #2ecc71;
}

.lmr-form-notice--error {
	background: #fdecea;
	border-left: 3px solid #e74c3c;
}

.lmr-form-notice--error ul {
	margin: 0;
	padding-left: 18px;
}

.lmr-form__row {
	margin-bottom: 18px;
}

.lmr-form__row label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}

.lmr-form__row input[type="text"],
.lmr-form__row input[type="number"],
.lmr-form__row textarea {
	width: 100%;
	max-width: 480px;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	font-family: inherit;
}

.lmr-form button.lmr-button {
	border: none;
	cursor: pointer;
	font-size: 15px;
}

.lmr-form__hint {
	font-size: 12px;
	color: #999;
	margin: 6px 0 0;
}

/* Galerie foto (v0.5) */
.lmr-gallery-upload {
	margin-bottom: 30px;
}

.lmr-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 12px;
}

.lmr-gallery-grid__item {
	position: relative;
	aspect-ratio: 1;
	border-radius: 6px;
	overflow: hidden;
	background: #f0f0f0;
}

.lmr-gallery-grid__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lmr-gallery-grid__delete {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 26px;
	height: 26px;
	line-height: 26px;
	text-align: center;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	border-radius: 50%;
	text-decoration: none;
	font-size: 16px;
}

.lmr-gallery-grid__delete:hover {
	background: #e63e6d;
	color: #fff;
}

.lmr-gallery-grid--preview .lmr-gallery-grid__item {
	cursor: default;
}

.lmr-gallery-empty {
	color: #999;
}

.lmr-profile__gallery {
	margin-top: 30px;
}

/* Membri (v0.6, restilizat v1.4) */
.lmr-members-count {
	color: #999;
	margin-bottom: 20px;
}

.lmr-members-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
	gap: 18px;
}

.lmr-member-card {
	display: flex;
	flex-direction: column;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #eee;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.lmr-member-card:hover {
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.lmr-member-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.lmr-member-card__image {
	aspect-ratio: 1;
	background: #f0f0f0;
}

.lmr-member-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lmr-member-card__info {
	padding: 10px 12px 8px;
}

.lmr-member-card__name {
	display: block;
	font-weight: 600;
}

.lmr-member-card__meta {
	display: block;
	font-size: 13px;
	color: #999;
	margin-top: 2px;
}

.lmr-member-card__message-btn {
	display: block;
	margin: 0 12px 12px;
	padding: 7px 10px;
	text-align: center;
	background: #fff;
	color: #e63e6d;
	border: 1px solid #e63e6d;
	border-radius: 6px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	transition: background 0.15s ease, color 0.15s ease;
}

.lmr-member-card__message-btn:hover {
	background: #e63e6d;
	color: #fff;
}

.lmr-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
}

.lmr-pagination__link {
	color: #e63e6d;
	text-decoration: none;
	font-weight: 600;
}

.lmr-pagination__current {
	color: #999;
	font-size: 14px;
}

/* Căutare / filtre (v0.7, restilizat v1.4) */
.lmr-members-filters {
	background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 22px 24px;
	margin-bottom: 28px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.lmr-members-filters__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 18px;
	align-items: end;
}

.lmr-form__row--inline {
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.lmr-form__row--inline label {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #aaa;
	margin: 0;
}

.lmr-form__row--inline select,
.lmr-form__row--inline input[type="text"],
.lmr-form__row--inline input[type="number"] {
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 14px;
	background: #fff;
	transition: border-color 0.15s ease;
}

.lmr-form__row--inline select:focus,
.lmr-form__row--inline input:focus {
	border-color: #e63e6d;
	outline: none;
}

.lmr-search-input {
	position: relative;
}

.lmr-search-input__icon {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 13px;
	opacity: 0.4;
	pointer-events: none;
}

.lmr-search-input input[type="text"] {
	width: 100%;
	padding-left: 34px;
}

.lmr-age-range {
	display: flex;
	align-items: center;
	gap: 8px;
}

.lmr-age-range input[type="number"] {
	width: 100%;
	min-width: 0;
}

.lmr-age-range__sep {
	color: #ccc;
	flex-shrink: 0;
}

.lmr-members-filters__actions {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid #eee;
}

.lmr-button--search {
	border: none;
	cursor: pointer;
	padding: 10px 24px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
}

.lmr-members-filters__reset {
	color: #999;
	font-size: 13px;
	text-decoration: none;
}

.lmr-members-filters__reset:hover {
	color: #e63e6d;
}

@media (max-width: 780px) {
	.lmr-members-filters__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 480px) {
	.lmr-members-filters__grid {
		grid-template-columns: 1fr;
	}
}

