.dashboard-frame
{
	width: 100%;
}

.admin-container
{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	width: auto;
	padding: 0 1rem 1rem 1rem;
}

.admin-menu
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	gap: 1rem;
	padding: 0 0.5rem;
	width: 100%;
}

.admin-menu li
{
	list-style: none;
}

.td-mobile-none
{
	display: none;
}

.wrapper
{
	width: 100vw;
	overflow-x: auto;
	height: auto;
	max-height: 50vh;
	width: auto;
	padding: 0;
}

table
{
	border-collapse: collapse;
	border: 2px solid rgb(140 140 140);
	font-family: sans-serif;
	font-size: 0.8rem;
	letter-spacing: 1px;
	box-shadow: inset 0 0 5px rgba(1, 1, 1, 0.5);
}

thead,  tfoot
{
	background-color: #353C34;
	color: #fff;
	font-family: 'secret_typewriter', sans-serif;
}

th,  td
{
	border: 1px solid rgb(160 160 160);
	padding: 0.1rem 0.5rem;
	max-width: 90px;
	height: 5vh;
	text-align: center;
	overflow: hidden;
}

tbody > tr:nth-of-type(even)
{
	background-color: rgba(234, 226, 214, 0.7);
}

tbody > tr
{
    background-color: rgba(209, 220, 198, 0.25)
}

.chip
{
	font-size: larger;
	width: 30px;
	height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chip-large
{
    font-size: larger;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-crud
{
	width: 35px;
	height: 35px;
}

tfoot th
{
	text-align: right;
}

tfoot td
{
	font-weight: bold;
}

.show-button-container
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
    margin-bottom: 1rem;
}

.show-article
{
	padding: 1rem;
}

.miniature-edit img
{
	width: 100%;
	max-height: 50vh;
	object-fit: cover;
}

/* MD SCREENS */
@media (min-width: 768px)
{

    .dashboard-frame
    {
        width: 75%;
    }

	.show-wrapper
	{
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	.show-article
	{
		max-width: 70%;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: start;
		gap: 1rem;
	}

	.admin-container
	{
		margin: 0;
		padding: 0 1rem 1rem 1rem;
	}

	.wrapper
	{
		width: 100%;
		max-height: 30vh;
	}

	.admin-menu
	{
		width: 100%;
		justify-content: start;
	}

	.td-mobile-none
	{
		display: table-cell;
	}

	th,td
	{
		padding: 0.1rem 0.5rem;
		max-width: 200px;
	}

    .chip-large
{
    width: 50px;
    height: 50px;
}
	.show-button-container
	{
		flex-direction: row;
		gap: 1rem;
	}
}

/* LG SCREENS */
@media (min-width: 1024px)
{
    .dashboard-frame
    {
        width: 65%;
    }
	.admin-container
	{
		width: 100%;
	}

	.wrapper
	{
		width: 100%;
		max-height: 70vh;
		padding: 1rem;
	}

	.show-article
	{
		max-width: 35%;
	}
}

/* XL SCREENS */
@media (min-width: 1280px)
{
	.admin-container
	{
		flex-direction: row;
		align-items: start;
		width: 100%;
		height: 100%;
	}

	.admin-menu
	{
		width: 25%;
		flex-direction: column;
		justify-content: space-between;
		margin: 0;
		padding: 0 0 1.5rem 0;
	}

	.admin-menu li
	{
		width: 100%;
	}
}
