/* styles.css */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.preloader img {
    width: 100px; /* Prilagodite veličinu slike prema potrebi */
    margin-bottom: 2px; /* Smanjena razdaljina između slike i progress bara */
}

.progress-bar {
    position: relative;
    width: 100px; /* Prilagodite širinu progress bara */
    height: 5px; /* Visina progress bara */
    background: #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 5px; /* Manja razdaljina između progress bara i sadržaja */
}

.progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #4caf50;
    border-radius: 5px;
}

.content {
    display: none;
}
