/* TABS */
.res_tab {
    display: flex;
    gap: 8px;
    padding: 10px;
    background: #e8e4db;
    border: 1px solid #d4cfc4;
    border-radius: 10px 10px 0 0;
}
.res_tab button {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    transition: 0.2s ease;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #8a8278;
    font-family: inherit;
}
.res_tab button:hover {
    background: #f0ede6;
    color: #4a4540;
}
.res_tab button.active {
    background: #ffffff;
    color: #3c3830;
    border-color: #d4cfc4;
}

/* CONTENT */
.res_tabcontent {
    background: #faf8f3;
    padding: 28px 32px;
    border: 1px solid #d4cfc4;
    border-top: none;
    border-radius: 0 0 10px 10px;
    animation: fadeEffect 0.3s ease;
}

/* FADE */
@keyframes fadeEffect {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* AUSGABE */
.res_ausgabe {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.res_ausgabe h1 {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    color: #2f2d29;
    margin-bottom: 4px;
    text-transform: lowercase;
    letter-spacing: 0.04em;
}
.res_ausgabe_h3 {
    text-align: center;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #aaa090;
    margin-bottom: 20px;
    font-weight: 600;
}

/* EINTRÄGE */
.res_bit {
    background: #ffffff;
    border: 1px solid #e0dbd2;
    border-radius: 8px;
    padding: 14px 18px;
    line-height: 1.7;
    transition: 0.2s ease;
    color: #3c3830;
    font-size: 13px;
}

.res_bit img {
    border-radius: 6px;
    vertical-align: middle;
    margin-right: 10px;
}
.res_bit a {
    color: #7a8a6a;
    text-decoration: none;
    font-weight: 500;
}
.res_bit a:hover {
    color: #4d5e3e;
}

/* FORMULAR */
.res_add {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
}
.res_add h2 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #aaa090;
}
.res_add form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 320px;
}
.res_add_inputs,
.res_add_select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.res_add label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #aaa090;
    font-weight: 600;
    min-width: 90px;
}
.res_add input,
.res_add select {
    flex: 1;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #d4cfc4;
    background: #ffffff;
    color: #2f2d29;
    font-family: inherit;
    font-size: 13px;
}
.res_add input:focus,
.res_add select:focus {
    outline: none;
    border-color: #8a8278;
}

/* BUTTONS */
.res_add_save input,
.res_add button,
.res_bit input[type="submit"] {
    background: #5c6458;
    color: #f5f2ea;
    border: none;
    border-radius: 6px;
    padding: 9px 18px;
    cursor: pointer;
    transition: 0.2s ease;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: inherit;
}
.res_add_save input:hover,
.res_add button:hover,
.res_bit input[type="submit"]:hover {
    background: #4a5247;
}

/* MODBEREICH */
.res_mod {
    margin-top: 28px;
    background: #f5f2eb;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #d4cfc4;
}
.res_mod h1 {
    font-size: 16px;
    font-weight: 500;
    color: #2f2d29;
    margin-bottom: 10px;
}
.res_mod p {
    font-size: 12px;
    line-height: 1.8;
    color: #7a7570;
}