.center-top {
    user-select: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
    margin-bottom: 95px;
}

.buttons {
    cursor: cell;
    font-size: 18px;
}

.bottom-part {
    margin: 0 auto;
}

.container {
    padding-bottom: 28px;
}

.con-title {
    user-select: none;
    cursor: cell;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    background-color: #070707;
    border: 1px solid #CABF5F;
    height: 25px;
}

.con-box {
    border: 1px solid #CABF5F;
    margin-bottom: 10px;
    position: relative;
    padding: 10px;
    padding-top: 18px;
    padding-bottom: 18px;
    display: none;
}

.clicked {
    color: #070707;
    background-color: #CABF5F;
}

@media (max-width: 768px) {
    .center-top {
        margin-top: 20px;
        margin-bottom: 40px;
        padding: 0 12px;
    }

    .buttons {
        font-size: 16px;
        line-height: 2;
    }

    .con-title {
        height: auto;
        min-height: 20px;
        flex-wrap: nowrap;
        align-items: center;
        font-size: 12px;
        padding: 1px 0;
        gap: 8px;
        line-height: 1.2;
    }

    .con-title b {
        flex: 1 1 auto;
        min-width: 0;
        word-break: break-word;
    }

    .titlendate {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .con-box {
        padding: 12px;
        padding-top: 14px;
        padding-bottom: 14px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .con-box a {
        word-break: break-word;
    }
}