* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Messages */
.message-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 999;
}

.message-box {
    background: #af4c4c;
    color: #fff;
    padding: 15px 20px;
    border-end-end-radius: 12px;
    border-end-start-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    font-size: 18px;
    animation: fadeIn 0.5s ease-in-out;
}

/* jednoduchá animácia */
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-40px);}
    to {opacity: 1; transform: translateY(0);}
}
