body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(to bottom right, #1e3c72, #2a5298);
    color: #f0f4f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #f0f4f8;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

p {
    font-size: 1.5rem;
    margin: 10px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

p:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

/* Specifičan stil za sve ID-ove */
#todayGreg, #todayUmmulqura, #todayMjesecbih, #todayMjesecbihNext {
    font-weight: bold;
    font-size: 1.7rem;
    color: #ffe8a1;
}

/* Animacija za glatki ulazak */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1, p {
    animation: fadeIn 1.2s ease-out;
}

.message {
    padding: 15px 25px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5em;
}

.success {
    background: rgba(46, 204, 113, 0.8);
    color: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.error {
    background: rgba(231, 76, 60, 0.8);
    color: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}