/* GeoFotos Dashboard Styles - Flexbox Layout con Fracciones */

.geofotora-standalone-wrapper a {
	color: white;
}

.geofotos-dashboard-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen-Sans', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
}

/* Themes - En la parte superior */

.geofotos-dashboard-themes-section {
	min-width: 0;
	max-width: 100%;
}

.geofotos-dashboard-themes-section * {
	box-sizing: border-box;
}

.geofotos-dashboard-themes-section h3 {
	margin-bottom: 1rem;
}

.geofotos-themes-grid {
	display: flex;
	flex-wrap: nowrap;
	gap: 1rem;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	min-width: 0;
	max-width: 100%;
	padding-block: 4px;
}

.geofotos-dashboard-main *::-webkit-scrollbar {
	height: 8px;
	width: 8px;
}

.geofotos-dashboard-main *::-webkit-scrollbar-track {
	background: #f1f1f140;
	border-radius: 4px;
}

.geofotos-dashboard-main *::-webkit-scrollbar-thumb {
	background: #d1d5db;
	border-radius: 4px;
}

.geofotos-dashboard-main *::-webkit-scrollbar-thumb:hover {
	background: #9ca3af;
}

.geofotos-theme-card {
	background: linear-gradient(0deg, #0b1221, #142739);
	border-radius: 1rem;
	padding: 1rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	border: 1px solid #294e79;
	transition: all 0.2s;
	cursor: pointer;
	text-decoration: none;
	flex-shrink: 0;
	min-width: 170px;
	height: 70px;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
	margin-bottom: 10px;
}

.geofotos-theme-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	border-color: #fbbf24;
}

.geofotos-all-themes-btn {
	text-transform: initial;
	align-items: center;
}

.geofotos-theme-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.geofotos-theme-color {
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
}

.geofotos-theme-name {
	font-weight: 700;
	color: #abceff;
}

.geofotos-theme-count {
	font-size: 0.875rem;
	color: #c3d1eb;
}

/* Contenedor Principal */
.geofotos-dashboard-main {
	display: flex;
	flex-direction: row;
	gap: 2rem;
}

.geofotos-dashboard-photos-section {
	flex: 2;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	min-width: 0;
	max-width: 100%;
}

.geofotos-dashboard-photos-section * {
	box-sizing: border-box;
}

.geofotos-dashboard-photos-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 1rem;
	flex-wrap: wrap;
}

.geofotos-dashboard-photos-title {
	font-size: 1.75rem;
	font-weight: 800;
	margin: 0 0 0.25rem 0;
	color: #1f2937;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.geofotos-dashboard-photos-subtitle {
	font-size: 0.875rem;
	color: #6b7280;
	margin: 0;
}

.geofotos-dashboard-photos-filters {
	display: flex;
	gap: 0.25rem;
	background: #f8f9fa;
	padding: 0.25rem;
	border-radius: 0.75rem;
	border: 1px solid #e5e7eb;
}

.geofotos-view-map-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: #285297;
	color: white;
	border-radius: 0.75rem;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.2s;
	white-space: nowrap;
}

.geofotos-view-map-btn:hover {
	color: white;
	background: #1e3a5f;
	transform: translateY(2px);
	box-shadow: 0 4px 6px rgba(20, 184, 166, 0.2);
}

.geofotos-view-map-btn i {
	font-size: 0.875rem;
}

.geofotos-filter-btn {
	padding: 0.5rem 1rem;
	border: none;
	border-radius: 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s;
	background: transparent;
	color: #6b7280;
	white-space: nowrap;
}

.geofotos-filter-btn:hover {
	background: #f3f4f6;
	color: #1f2937;
}

.geofotos-filter-btn.active {
	background: #fbbf24;
	color: white;
}

.geofotos-dashboard-photos-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 400px;
	grid-auto-rows: 250px;
	gap: 10px;
}

.geofotos-dashboard-photos-grid> :first-child {
	grid-column: span 2;
}

.geofotos-photo-card {
	position: relative;
	background: #ffffff;
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
	border: 1px solid #163961;
	cursor: pointer;
}

.geofotos-photo-card:hover {
	box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
	transform: translateY(-2px);
	border-color: #fbbf24;
}

.geofotos-photo-card-image-wrapper {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.geofotos-photo-card-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s;
	opacity: 0.8;
}

.geofotos-photo-card:hover .geofotos-photo-card-image {
	transform: scale(1.05);
	opacity: 1;
}

.geofotos-photo-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,
			rgba(0, 0, 0, 0.8) 0%,
			rgba(0, 0, 0, 0.4) 50%,
			transparent 100%);
}

.geofotos-photo-card-content {
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.geofotos-photo-card-content-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 0.5rem;
	z-index: 10;
}

.geofotos-photo-card-header {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	flex: 1;
}

.geofotos-photo-badge {
	background: rgba(251, 191, 36, 0.9);
	backdrop-filter: blur(10px);
	color: white;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.375rem 0.75rem;
	border-radius: 0.5rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: inline-block;
	margin-bottom: 0.5rem;
}

.geofotos-location-badge {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	color: #14b8a6;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.5rem;
}

.geofotos-location-badge i {
	font-size: 0.875rem;
}

.geofotos-small-photo-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: white;
	margin: 0;
	line-height: 1.3;
	max-width: 100%;
	overflow: hidden;
	word-wrap: break-word;
}

.geofotos-small-photo-info {
	margin-bottom: 0.75rem;
}

.geofotos-theme-badge {
	color: white;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.375rem 0.75rem;
	border-radius: 0.5rem;
	display: inline-block;
}

.geofotos-photo-badge {
	background: rgba(251, 191, 36, 0.9);
	backdrop-filter: blur(10px);
	color: white;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.375rem 0.75rem;
	border-radius: 0.5rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: inline-block;
}

.geofotos-location-badge {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	color: #14b8a6;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.5rem;
}

.geofotos-location-badge i {
	font-size: 0.875rem;
}

.geofotos-small-photo-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: white;
	margin: 0;
	line-height: 1.3;
	max-width: 100%;
	overflow: hidden;
	word-wrap: break-word;
}

.geofotos-theme-badge {
	background: #fbbf24;
	color: white;
	font-size: 0.625rem;
	font-weight: 700;
	padding: 0.25rem 0.5rem;
	border-radius: 0.25rem;
	display: inline-block;
	margin-bottom: 0.5rem;
}

.geofotos-photo-badge {
	background: rgba(251, 191, 36, 0.9);
	backdrop-filter: blur(10px);
	color: white;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.375rem 0.75rem;
	border-radius: 0.5rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: inline-block;
	margin-bottom: 0.5rem;
}

.geofotos-small-photo-title {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 1.5rem;
}

/* Estilos unificados de Rating (Igual que en /fotos) */
.feed-overlay-rating {
	position: absolute;
	bottom: 20px;
	/* Ajustado al padding del card del dashboard */
	right: 20px;
	display: flex;
	align-items: center;
	gap: 5px;
	background: rgba(0, 0, 0, 0.6);
	padding: 4px 8px;
	border-radius: 12px;
	color: #fff;
	z-index: 20;
	backdrop-filter: blur(2px);
}

.geofotos-feed-rating-text {
	font-size: 12px;
	font-weight: bold;
	color: #fff;
}

.geofotos-feed-stars {
	display: flex;
	gap: 2px;
	font-size: 1.25rem;
	color: #fbbf24;
}

.geofotos-feed-stars i {
	font-size: 10px;
	cursor: pointer;
	color: #ccc;
	transition: color 0.2s;
}

.geofotos-feed-stars[data-user-rating="0"] i {
	cursor: pointer;
}

.geofotos-feed-stars.has-voted i {
	cursor: not-allowed;
}

.geofotos-feed-stars.disabled i {
	cursor: default;
}

.geofotos-feed-stars i:hover,
.geofotos-feed-stars i.active {
	color: #ffc107;
}

.geofotos-small-photo-info {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	border: 2px solid #fbbf24;
	object-fit: cover;
}

.geofotos-author-info p:first-child {
	color: white;
	font-size: 0.875rem;
	font-weight: 700;
}

.geofotos-author-info p:last-child {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.75rem;
}

.geofotos-small-photo-meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	min-width: 0;
}

.geofotos-small-photo-meta .avatar {
	width: 2rem;
	height: 2rem;
	flex-shrink: 0;
	border-radius: 50%;
}

.geofotos-small-photo-author {
	display: flex;
	align-items: center;
	flex: 1;
	min-width: 0;
	gap: .75rem;
}

.geofotos-small-photo-author span {
	color: white;
	font-size: 0.875rem;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.geofotos-small-photo-info img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.geofotos-no-photos {
	text-align: center;
	padding: 2rem;
	color: #6b7280;
	grid-column: span 2;
}

/* Sidebar derecha - ocupa 1/3 */
.geofotos-dashboard-sidebar {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	overflow-y: auto;
	overflow-x: hidden;
	min-width: 0;
	max-width: 100%;
}

.geofotos-dashboard-sidebar * {
	box-sizing: border-box;
}

.geofotos-contributors-card,
.geofotos-voted-photos-card,
.geofotos-activity-card,
.geofotos-dashboard-themes-section,
.geofotos-dashboard-cta,
.geofotos-contact-card {
	background: linear-gradient(180deg, #0b1221, #142739);
	border-radius: 1.5rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	padding: 2rem;
	border: 1px solid #4262a33b;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	overflow: hidden;
}

.geofotos-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-width: 0;
}

.geofotos-section-title {
	font-weight: 700;
	color: #ffffff;
	font-size: 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	min-width: 0;
	overflow: hidden;
}

.geofotos-more-btn {
	color: #6b7280;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	transition: color 0.2s;
}

.geofotos-more-btn:hover {
	color: #1f2937;
}

.geofotos-empty-state {
	text-align: center;
	color: #6b7280;
	padding: 2rem;
}

.geofotos-contributors-map-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	background: #285297;
	color: white;
	padding: 1rem;
	border-radius: 0.75rem;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.875rem;
	transition: all 0.2s;
	margin-bottom: 1rem;
}

.geofotos-contributors-map-btn:hover {
	color: white;
	background: #1e3a5f;
	transform: translateY(2px);
	box-shadow: 0 4px 12px rgba(40, 82, 95, 0.3);
}

.geofotos-contributors-map-btn i {
	font-size: 1.125rem;
}

/* Voted Photos Card */
.geofotos-voted-photos-card {
	padding: 1.5rem;
}

.geofotos-voted-photos-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.geofotos-voted-photo-item {
	display: flex;
	gap: 1rem;
	padding: 0.75rem;
	border-radius: 0.75rem;
	background: #00000047;
	border: 1px solid #1b273f;
	transition: all 0.2s;
	cursor: pointer;
}

.geofotos-voted-photo-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(251, 191, 36, 0.15);
	border-color: #fbbf24;
}

.geofotos-voted-photo-info {
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
	flex: 1;
	min-width: 0;
}

.geofotos-voted-photo-title,
.geofotos-activity-title {
	font-size: 0.875rem;
	font-weight: 700;
	color: #ddd;
	margin: 0;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.geofotos-voted-photo-rating {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.75rem;
	font-weight: 700;
	color: #f97316;
}

.geofotos-voted-photo-rating i {
	font-size: 0.625rem;
}

.geofotos-voted-photo-meta {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.5rem;
	font-size: 0.75rem;
	flex-wrap: wrap;
}

.geofotos-voted-photo-author {
	color: #6b7280;
}

.geofotos-voted-photo-theme,
.geofotos-activity-theme {
	padding: 0.125rem 0.5rem;
	border-radius: 10px;
	color: white;
	font-size: .75rem;
	font-weight: 700;
	display: inline-block;
	overflow-wrap: break-word;
	word-break: break-word;
	float: right;
}

/* Contributors */
.geofotos-contributors-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.geofotos-contributor-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem;
	border-radius: 1rem;
	background: #003445a1;
	transition: all 0.2s;
	border: 1px solid transparent;
	flex-wrap: nowrap;
	min-width: 0;
	max-width: 100%;
}

.geofotos-contributor-item:hover {
	background: #f8f9fa;
	border-color: #e5e7eb;
}

.geofotos-rank-number {
	font-weight: 900;
	font-size: 1.5rem;
	color: #f97316;
	width: 1.5rem;
	text-align: center;
}

.geofotos-rank-number.secondary {
	color: #6b7280;
}

.geofotos-contributor-item .avatar {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.geofotos-contributor-info {
	flex: 1 1 auto;
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.geofotos-contributor-name {
	font-size: 0.875rem;
	font-weight: 700;
	color: #95b3db;
	margin: 0 0 0.25rem 0;
	transition: color 0.2s;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

.geofotos-contributor-item:hover .geofotos-contributor-name {
	color: #f97316;
}

.geofotos-progress-container {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex: 1 1 auto;
	min-width: 0;
	max-width: 100%;
}

.geofotos-progress-bar {
	height: 0.375rem;
	width: 100%;
	min-width: 0;
	background: white;
	border-radius: 9999px;
	overflow: hidden;
	flex: 1;
	position: relative;
	display: flex;
}

.geofotos-progress-fill {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: #f97316;
	border-radius: 9999px;
}

.geofotos-photos-count {
	font-size: 0.625rem;
	color: #6b7280;
	margin: 0;
	flex-shrink: 0;
	white-space: nowrap;
}

.geofotos-view-more-container {
	margin-top: 1rem;
	text-align: center;
}

.geofotos-view-more-link {
	font-size: 0.75rem;
	font-weight: 700;
	color: #6b7280;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: color 0.2s;
}

.geofotos-view-more-link:hover {
	color: #fbbf24;
}

/* Activity */
.geofotos-activity-card {
	padding: 1.5rem;
}

.geofotos-activity-timeline {
	position: relative;
	border-left: 2px dotted #fb8124;
	border-image: linear-gradient(to bottom, #fb8124, #fb812400) 1;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.geofotos-activity-item {
	background: #0009;
	position: relative;
	margin-bottom: 0.5rem;
	margin-left: 10px;
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
	min-width: 0;
	max-width: 100%;
	padding: 0.5rem .5rem 0.5rem 1rem;
	border: 1px solid transparent;
	border-radius: 1rem;
}

.geofotos-activity-item:hover {
	background: #000000cc;
	border-color: #2f4a6f;
}

.geofotos-activity-item:last-child {
	margin-bottom: 0;
}

.geofotos-activity-dot {
	margin-top: 2px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: white;
	border: 2px solid #fb8124;
	transition: transform 0.2s;
	z-index: 10;
	position: absolute;
	left: -17px;
	top: 10px;
}

.geofotos-activity-item:hover .geofotos-activity-dot {
	transform: scale(1.25);
}

.geofotos-activity-content {
	display: flex;
	flex: 1;
	gap: 3px;
	flex-direction: column;
	min-width: 0;
	max-width: 100%;
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	height: 100%;
	justify-content: space-between;
	z-index: 2;
}

.geofotos-activity-content>* {
	margin-bottom: 0 !important;
}

.geofotos-activity-text {
	font-size: 0.875rem;
	color: #aaa;
	margin: 0 0 0.25rem 0;
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
	white-space: normal;
	text-align: left;
	word-break: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

.geofotos-activity-highlight {
	color: #fb8124;
}

.geofotos-activity-highlight.white {
	color: white;
}

.geofotos-activity-content p {
	margin: 0;
	min-width: 0;
	max-width: 100%;
}

.geofotos-activity-timestamp {
	font-size: 0.75rem;
	color: #6b7280;
	margin: 0;
	flex: 1;
	display: flex;
	align-items: flex-end;
}

.geofotos-activity-thumbnail,
.geofotos-voted-photo-thumbnail {
	position: relative;
	width: 5rem;
	height: 5rem;
	border-radius: 0.5rem;
	overflow: hidden;
	border: 1px solid transparent;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	flex-shrink: 0;
	z-index: 1;
}

.geofotos-activity-thumbnail img,
.geofotos-voted-photo-thumbnail img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.geofotos-activity-thumbnail {
	cursor: pointer;
	transition: transform 0.2s;
}

.geofotos-activity-thumbnail:hover {
	transform: scale(1.1);
	border-color: #fbbf24;
}

/* CTA */
.geofotos-dashboard-cta {
	background: linear-gradient(to bottom, #d1b800, #956201);
	border-radius: 1.5rem;
	padding: 2.5rem;
	position: relative;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.05);
	margin-top: 2rem;
}

.geofotos-cta-content {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2rem;
}

.geofotos-cta-text {
	text-align: center;
	max-width: 32rem;
}

.geofotos-cta-title {
	font-size: 1.875rem;
	font-weight: 800;
	color: white;
	margin: 0 0 0.75rem 0;
}

.geofotos-cta-description {
	color: #dbeafe;
	font-size: 1.125rem;
	line-height: 1.6;
	margin: 0;
}

.geofotos-cta-button {
	background: #009fff;
	color: #1e3a8a;
	font-weight: 800;
	padding: 1rem 2rem;
	border-radius: 0.75rem;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	border: none;
	cursor: pointer;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	white-space: nowrap;
}

.geofotos-cta-button:hover {
	background: #eff6ff;
	transform: scale(1.05);
}

/* Responsive Design */

/* Tablet: < 1024px */
@media (max-width: 1023px) {
	.geofotos-dashboard-main {
		flex-direction: column;
		gap: 2rem;
	}

	.geofotos-dashboard-photos-section {
		flex: auto;
	}

	.geofotos-dashboard-sidebar {
		flex: auto;
	}

	.geofotos-dashboard-photos-title {
		font-size: 1.5rem;
	}

	.geofotos-dashboard-photos-grid {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: min-content;
		/* Las columnas se ajustan al contenido */
		overflow-x: auto;
		gap: 1rem;
		padding: 0 1rem 1rem 1rem;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}

	.geofotos-dashboard-photos-grid>* {
		width: 280px;
		/* Ancho fijo en los hijos */
		scroll-snap-align: start;
	}

	.geofotos-dashboard-photos-grid> :first-child {
		grid-column: auto;
		/* Resetea el span de 2 columnas para el layout de 1 columna */
	}
}

/* Móvil: < 768px */
@media (max-width: 767px) {
	.geofotos-dashboard-container {
		padding: 1rem;
		gap: 1.5rem;
	}

	.geofotos-dashboard-main {
		gap: 1.5rem;
	}

	.geofotos-dashboard-photos-header {
		flex-direction: row;
		align-items: flex-start;
		justify-content: center;
	}

	.geofotos-dashboard-photos-header>* {
		flex: 1;
	}

	/*.geofotos-dashboard-photos-filters {
		width: 100%;
	}*/

	.geofotos-dashboard-photos-grid {
		gap: 1rem;
	}

	.geofotos-sidebar {
		gap: 1rem;
	}

	.geofotos-contributor-item {
		padding: 0.5rem;
	}

	.geofotos-cta-content {
		gap: 1rem;
	}

	.geofotos-cta-text {
		font-size: 1rem;
	}

	.geofotos-cta-title {
		font-size: 1.5rem;
	}

	.geofotos-cta-description {
		font-size: 1rem;
	}

	.geofotos-cta-button {
		padding: 0.75rem 1.5rem;
		font-size: 0.875rem;
	}
}

@media (max-width: 450px) {
	.geofotos-dashboard-photos-filters {
		flex: 1;
	}

	.geofotos-view-map-btn {
		flex: 1;
	}
}

/* Active Theme Card Styles */
.geofotos-theme-card.active {
	transform: translateY(-4px);
	box-shadow: 0 10px 15px -3px rgba(251, 191, 36, 0.3);
	border-color: #fbbf24;
	border-width: 2px;
}

/* Photos Loader */
.geofotos-photos-loader {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 3rem;
	color: #6b7280;
}

.geofotos-photos-loader i {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #fbbf24;
}

.geofotos-photos-loader span {
	font-size: 0.875rem;
	font-weight: 500;
}


}

border-radius: 0.75rem;
padding: 1rem;
border: 1px solid #334155;
min-height: 500px;
flex-direction: column;
justify-content: center;
}