.actions a i {
    font-size: 16px;
}

.actions a.btn-primary {
    background-color: rgb(149,160,193);
    color: white;
    border: none;
    padding: 8px;
}

.actions a.btn-primary:hover {
    background-color: rgb(121, 134, 172);
}

.actions a.btn-danger {
    background-color: rgb(211, 60, 67);
    color: white;
    border: none;
    padding: 8px;
}

.actions a.btn-danger:hover {
    background-color: rgb(185, 32, 39);
}

.top-nav-links, .side-nav, h1, h2, h3, h4, h5, h6 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.color-picker-container {
	display: flex;
	align-items: center;
}

.color-picker-container input[type="color"] {
	margin-right: 10px;
}

.color-picker-container input[type="text"] {
	width: 100px;
	margin: 15px 0 0 -60px;
}

.form-control {
    font-size: 1.5rem!important;
}

.color-sample {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    border: 2px solid grey;
    line-height: 18px;
    text-align: center;
}

.color-code {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    height: 20px;
}

.input-with-prefix {
    display: flex;
    align-items: center;
}

.input-with-prefix .prefix {
    margin-right: 10px;
    font-weight: bold;
}

.input-with-prefix input {
    width: 200px;
}

.nomargin fieldset, .nomargin input, .nomargin select, .nomargin textarea {
    margin-bottom: 0;
}

img.prv-image {
    height: 50px;
}

input.success {
    border-color: limegreen;
}

input.error {
    border-color: red;
}

.top-nav-links {
    display: flex; /* Ustawienie linków w jednej linii */
    justify-content: space-around; /* Równomierne rozłożenie linków */
}

.top-nav-links a {
    display: flex;
    flex-direction: column; /* Ikona na górze, tekst na dole */
    align-items: center; /* Wyśrodkowanie zawartości */
    justify-content: center;
    text-decoration: none; /* Usunięcie podkreślenia */
    padding: 10px;
    font-size: 12px;
    font-weight: 400;
    color: rgb(149,160,193);
    border: 1px solid transparent;
    border-radius: 5px;
    transition: background-color 0.3s, border 0.3s;
    width: 50px; /* Szerokość przycisku */
    height: 50px; /* Wysokość przycisku */
    text-align: center; /* Wyśrodkowanie tekstu */
    background-color: #ffffff; /* Tło przycisku */
    border-radius: 8px; /* Zaokrąglenie krawędzi */
}

.top-nav-links a.active, .top-nav-links a:hover {
    background-color: rgb(149,160,193);
    color: white;
}

.top-nav-links a.logout:hover {
    background-color: rgb(211, 60, 67);
    color: white;
}

.top-nav-links a i {
    font-size: 24px; /* Większy rozmiar ikony */
    margin-bottom: 5px; /* Odstęp między ikoną a tekstem */
}

.top-nav-links a span {
    font-size: 12px; /* Mniejsza czcionka dla tekstu */
}

h3 {
    color: rgb(123, 138, 182);
}

h3 i {
    margin-right: 5px;
}

.button.button-clear, .button.button-clear[disabled]:hover {
 font-size: 20px;
 color: rgb(211, 60, 67);   
}

.content {
    margin-bottom: 40px;
}