﻿
        /* Popravlja prikaz lista u about-me sekciji */
        .about-me ul,
        .about-me ol {
            margin: 10px 0 10px 25px !important;
            padding-left: 20px !important;
        }
        
        .about-me ul li,
        .about-me ol li {
            margin-bottom: 6px !important;
            list-style: inherit !important;
            display: list-item !important;
            padding-left: 0 !important;
        }
        
        .about-me ul li {
            list-style-type: disc !important;
        }
        
        .about-me ol li {
            list-style-type: decimal !important;
        }
        
        /* Ako neki template resetira list-style, ovo ga vraća */
        .about-me ul {
            list-style-type: disc !important;
        }
        
        .about-me ol {
            list-style-type: decimal !important;
        }
        
        /* Za slučaj da je neko koristio ::before pseudoelement */
        .about-me ul li::before,
        .about-me ol li::before {
            display: none !important;
        }
        
        /* Stil za h2, h3 unutar about-me */
        .about-me h2,
        .about-me h3 {
            margin-top: 15px;
            margin-bottom: 10px;
        }
        
        .about-me h2:first-child,
        .about-me h3:first-child {
            margin-top: 0;
        }
        
        /* Stil za strong i em unutar about-me */
        .about-me strong {
            font-weight: 700 !important;
        }
        
        .about-me em {
            font-style: italic !important;
        }
        
        /* Paragrafi */
        .about-me p {
            margin-bottom: 12px;
        }
