.parent_dn-table-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-family: "IranSans", Sans-serif;
}

.btn-dn-table {
    background-color: var(--e-global-color-accent);
    color: #fff;
    border: unset;
    padding: 0.8rem 2rem;
    font-size: 0.8rem;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    display: inline-block;
    line-height: 1;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s ease;
}

.btn-dn-table span {
    margin-right: 0.5rem;
}
.actions-list {
    display: none;
    position: absolute;
    bottom: 1.6rem;
    left: 0;
    padding: 1rem;
    text-align: right;
    min-width: 180px;
    opacity: 0;
	right: -1rem;
}
.btn-dn-table:hover .actions-list{
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.actions-list a {
    display: block;
    background: #555;
    padding: .6rem;
    border-radius: .4rem;
    color: #f6d795;
    font-size: .8rem;
    text-decoration: none;
    transition: background 0.3s ease, padding 0.3s ease;
}

.actions-list a:hover {
    background: #f6d795;
    color: #303030;
}

