body {
    margin: 0;
    padding: 0;
    background-color: #DDD;
    font-family: 'Open Sans', sans-serif;
}
#page {
    /*background-color: #FFF;*/
    max-width: 780px;
    margin: auto;
    padding: 10px;
}
#profile {
    background-color: #FFF;
    margin: 10px 0;
    padding: 10px;
    border-radius: 6px;
    /*overflow: scroll;*/
}
#profile .avatar {
    margin: -20px 10px 10px 0;
    float: left;
}
#profile .username {
    margin: 0;
}
#profile p {
    margin-top: 4px;
}
#profile .profile-fields {
    clear: both;
    display: grid;
    grid-template-columns: max-content auto;
    border-radius: 5px;
    border: 1px solid #CCC;
    margin: 10px 0 0 0;
    width: min-content;
    min-width: 30%;
}
#profile .webfinger {
    font-weight: 500;
    font-size: 1rem;
    margin-left: 8px;
    color: #888;
    user-select: all;
}
.profile-fields dt { 
    border-top: 1px solid #CCC;
    grid-column: 1;
    padding: 5px 15px 5px 20px;
    margin: 0;
    text-align: right;
    font-weight: bold;
}
.profile-fields dd { 
    border-top: 1px solid #CCC;
    border-left: 1px solid #CCC;
    grid-column: 2;
    padding: 5px 10px;
    margin: 0;
}
.profile-fields dt:first-of-type {
    border-top-width: 0;
}
.profile-fields dd:first-of-type {
    border-top-width: 0;
}
.post {
    background-color: #FFF;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 6px;
    /*overflow: scroll;*/
}
.post-context {
	background-color: #F7F7F7;
}
.post-featured {
	border: 3px solid #CCC;
}
.post-content {
    padding: 6px 10px;
	overflow: scroll;
}
.post .attribution {
	display: inline;
}
.post .published {
    float: right;
    padding: 0 10px 6px 0;
}
.post .actions {
    clear: both;
    padding: 5px;
}
.post .actions form {
    display: inline;
}
.media {
    text-align: center;
}
.media img {
    max-width: 100%;
    height: auto;
}
.media-0 > * {
    border-radius: 6px 6px 0 0;
}
.avatar {
    /* fedi, 94-100px; twitter is ~200px */
    max-width: 100px;
    max-height: 100px;
    border-radius: 8%;
}


.profile-aside {
	position: relative;
	height: 0;
	overflow: visible;
	left: -320px;
	top: 10px;
	width: 300px;
	text-align: right;
font-size: 80%;
}
.profile-aside img {
	max-height: 70px;
	max-width: 70px;
}
/* */
.follows-you {
	display: inline-block;
	margin: 2px;
	font-style: italic;
}
.action-in {
	display: inline-block;
	margin: 2px;
	padding: 4px 8px;
	border-radius: 4px;
	text-decoration: none;
}
.action-out {
	display: inline-block;
	margin: 2px;
	padding: 2px 4px;
	border-radius: 4px;
	text-decoration: none;
}
.action-allow:link, .action-allow:visited {
	color: white;
	background-color: #44D;
}
.action-deny:link, .action-deny:visited {
	color: white;
	background-color: #D44;
	border: 2px solid #A22;
}