main {
    flex: 1;
    background-color: var(--bg-light);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--main-gap);
    padding: var(--v-main-padding) 0px;
    min-height: 100vh;
}

.main-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
}

@media (max-width: 991px) {
    .main-wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

}

.main-wrapper-inner {
    display: flex;
    flex-direction: column;
    gap: var(--main-gap);
    justify-content: space-between;
    padding: 0px var(--h-main-padding);
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 991px) {

}

@media (max-width: 767px) {
    
}

@media (max-width: 478px) {
    
}

.block-wrapper {
    width: 100%;
    overflow: hidden;
}

.block-wrapper a {
    font-weight: 450;
    color: var(--main-color);
}

.block-wrapper a:hover {
    text-decoration: underline;
}

.block-heading {
    padding-left: 15px;
    width: 100%;
}

.block-content {
    display: flex;
    flex-direction: column;
    padding: 50px 50px;
    background-color: white;
    border-radius: 20px;
    width: 100%;
    position: relative;
    gap: 40px;
}

@media (max-width: 991px) {
    .block-content {
        display: flex;
        flex-direction: column;
        padding: 25px 25px;
        background-color: white;
        border-radius: 20px;
        width: 100%;
    }
}


/* --- VZHLED TABULKY S LOGY EMAILŮ --- */
/* Tabulka na celou šířku rodiče */
table {
    width: 100%;
    border-collapse: collapse; /* sloučí okraje buněk */
}

/* Hlavička tabulky - červené pozadí a bílý text */
table thead tr {
    background-color: var(--main-color-lighter);
    text-align: left;
}

/* Řádky těla tabulky */
table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

table tbody tr:nth-child(even) {
    background-color: var(--bg-lighter);
}

table th {
    font-weight: 500;
}

tbody {
    font-size: 14px;
}

/* Buňky tabulky */
table th, table td {
    padding: 15px 25px;
}

/* Zvýraznění při najetí myší */
table tbody tr:hover {
    background-color: var(--bg-light);
}

/* --- Status v přehledu logu emailů --- */
.email-report-status {
    display: flex;
    align-items: center; /* vertikálně vycentruje text i puntík */
    gap: 8px; /* mezera mezi puntíkem a textem */
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.email-report-status.delivered .dot {
    background-color: green;
}

.email-report-status.error .dot {
    background-color: red;
}


/* --- VZHLED FORMULÁŘE NA EDITACI E-MAILU CO CHODÍ LIDEM S PDF --- */
.main-form {
    width: 100%;
    font-family: "Outfit", sans-serif;
}

.main-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.main-form input,
.main-form textarea {
    width: 100%;
    padding: 15px 25px;
    margin-bottom: 15px;
    background-color: var(--bg-lighter);
    border: none;
    font-size: 16px;
    font-family: "Outfit", sans-serif;
}

/* Border při kliknutí na pole ve formuláři */
.main-form input:focus,
.main-form textarea:focus {
    outline: none;
    background-color: var(--main-color-lighter)
}

.main-form textarea {
    resize: vertical;
    min-height: 100px;
}

.main-form button {
    width: 100%;
    padding: 15px 25px;
    background-color: var(--main-cta);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: var(--font-size-button);
    cursor: pointer;
    transition: background-color 0.4s ease;
}

.main-form button:hover {
    background-color: var(--main-cta-hover);
}

/* --- ROADMAPA --- */
.roadmap-tag {
   display: flex;
   align-items: center;
   padding-bottom: 20px;
}

.roadmap-tag.new span {
    background-color: green;
    color: white;
    padding: 8px 25px;
    width: auto;
    border-radius: 100px;
    font-size: 14px;
}

.roadmap-tag.update span {
    background-color: orange;
    color: white;
    padding: 8px 25px;
    width: auto;
    border-radius: 100px;
    font-size: 14px;
}