/**
 * Main CSS file
 *
 * Copyright © 2024 - 2025 Jan Žák, Lukáš Oubrecht
 *
 * Description: custom style codes
 *
 * @package Staré fotografie
 * @author Jan Žák
 */

h1, h2, h3, h4, h5, h6, p, label, ol {
	font-family: 'Ubuntu',monospace;
}

.form-signin {
	width: 100%;
	max-width: 330px;
	padding-top: 100px;
	margin: auto;
}

.form-signin H1 {
	color: #000000;
}

.form-signin .form-floating:focus-within {
	z-index: 2;
}

.form-signin input[type="email"] {
	margin-bottom: -1px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	}

.form-signin input[type="password"] {
	margin-bottom: 10px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.leaflet-top {
    top: 50px;
}

img.loader{
    height: 50px;
    width: 50px;
    margin: 0 auto;
}

.img-fluid{
    object-fit: cover;
    height:270px !important;
    width: 100% !important;
    max-width: none !important;
}

.other_photo_box {
    width: 100%; /* Nastav šířku na 100% rodičovského kontejneru */
    overflow-x: auto; /* Umožňuje horizontální posouvání */
    white-space: nowrap; /* Zabraňuje zalomení položek na další řádky */
    display: flex; /* Flexbox pro lepší zarovnání vedle sebe */
    align-items: center; /* Zarovná obrázky vertikálně na střed */
    box-sizing: border-box;
    padding: 0;
}

.other_photo a img {
    height: 60px; /* Nastaví výšku obrázků */
    width: auto; /* Udržuje poměr stran obrázků */
    margin-right: 5px; /* Odstup mezi obrázky */
    box-sizing: border-box;
    border: 1px solid black;
}

.other_photo{
    position: relative;
}

.other_photo_delete{
    position: absolute;
    top: 2px;
    right: 8px;
    width: 18px;
    cursor: pointer;
}

.other_photo_delete:hover{
    transform: scale(1.1);
}