/*fonts*/
/* styles/global.css */

/* Standardized typography scale */
h1 {
    font-size: 2rem; /* 32px */
    font-weight: bold;
    text-align: left;
    margin: 0 0 2rem 0;
}

h2 {
    text-align: left;
    font-size: 1.5rem; /* 24px */
    margin: 0 0 0.75rem 0;
}

h3 {
    text-align: left;
    font-size: 1.17rem; /* ~18.7px */
    margin: 0 0 0.5rem 0;
}

h4 {
    text-align: left;
    font-size: 1rem; /* 16px */
    margin: 0 0 0.5rem 0;
}

p {
    font-size: 1rem; /* 16px */
    margin: 0 0 1rem 0;
    line-height: 1.1;
    white-space: pre-wrap;
}

ul, ol {
    /* reset margins/padding as desired */
    margin: 0.5rem 0;   /* equal top and bottom margins */
    padding-left: 1.5rem; /* indent the list */
}

ul {
    list-style-type: disc; /* ● bullets */
}

ol {
    list-style-type: decimal; /* 1., 2., 3., … */
}

li {
    margin-bottom: 0.5rem; /* space between items */
}

ul, ol, li {
    font-weight: normal; /* prevent bold inheritance */
}

@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    /* fallback in case no class applied */
    font-family: 'Fira Code', monospace;
    line-height: 1.5;
}


/*baza*/
footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background: #f4f4f4;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
}

/* shared section base styles */
section {
    margin: 20px auto;
    padding: 20px;
    max-width: 1362px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 10px;
}

/* This class is now only for the inner container that needs to scroll.
   It doesn't have borders or margins, as it lives inside a <section>. */
.section-scrollable {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding-bottom: 20px; /* Provides space for the scrollbar */

    /* These negative margins allow the scrollable content to extend to the
       very edges of the parent section, fixing the padding issue. */
    margin-left: -20px;
    margin-right: -20px;

    /* We add padding back here to ensure the content inside doesn't
       touch the edges of the viewport when scrolled fully. */
    padding-left: 20px;
    padding-right: 20px;
}


/*buttons*/
.button {
    padding: 11px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #007AFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.button-container {
    text-align: center;
}

.button-go-back {
    width: auto;
    height: 60px;
    border: 4px solid black;
    margin-top: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.button:hover {
    background-color: #0040DD;
    transform: scale(1.05);
}

.button:active {
    transform: scale(1);
}

/*logo*/
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.logo {
    width: auto;
    height: 73px;
    border: 4px solid black;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    /*margin-bottom: 20px;*/
}


/*pictures*/
.picture-round {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 0; /* Ensures no additional space around the image */
}


