/* ===== FC2 Blog Style Clone ===== */
body {
    background-color: #f5f5f5;
    background-image:url(https://ophanimkei.com/images/sozai/zetsubou_1.jpg);
    color: #333;
    font-family: "MS PGothic", "Osaka", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

p {
    margin: 3px;
    padding: 0px;
}

img {
    max-width: 97%;
}

#layout {
    width: 770px;
    margin: 0 auto;
    position: relative;
    background-color: white;
    background-repeat: repeat-y;
    border: 1px solid black;
    padding: 0;
}

#header {
    background: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 15px;
    height:200px;
    background-image: url(https://ophanimkei.com/images/sozai/zetsubou_2.jpg);
    background-size:cover;
}

.site_title {
    font-size: 33px;
    font-weight: bolder;
    padding-top: 50px;
    padding-left: 50px;
    margin: 0px;
    color: #8b89cc;
    outline: 4px white;
    border-bottom: 0px;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #ffffff, -1px 1px 0 #000, 1px 1px 0 #ffffff;
}



.site_title a {
    text-decoration: none;
}

.entry_table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.entry_bg {
    background: #fff;
    padding: 15px;
    border: double black;
}

.entry_title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #434073;
}

.entry_text br {
   display: block;
   margin: 5px 0;
}

.entry_state {
    font-size: 12px;
    color: #666;
    border-top: 1px dotted #ccc;
    padding-top: 5px;
}

.entry_state a {
    color: #666;
}

#footer {
    text-align: center;
    margin-top: 2px;
    padding: 10px;
    font-size: 12px;
    color: #999;
}

/* Links */
a {
    color: #434073;
    text-decoration: underline;
}

a:hover {
    color: #ff6600;
    text-decoration: none;
}

/* Forms */
input[type="text"],
textarea {
    border: 1px solid #ccc;
    padding: 5px;
    font-family: inherit;
}

/* Menu styles */
#menu {
    float: left;
    width: 200px;
    margin-right: 20px;
}


/*entire post container*/
#main { 
    float: left;
    width: 530px;
    margin-left: 7px;
}

/* Clearfix */
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/*navbar*/
/* ===== Sidebar Layout ===== */
#content-wrapper {
    display: flex;
    gap: 20px;
    margin-right: 10px;
}

#main {
    flex: 1;
}

#sidebar {
    width: 180px;
    padding: 10px;
}

.sidebar-widget {
    margin-bottom: 25px;
}

.sidebar-widget h3 {
    font-size: 16px;
    color: #434073;
    border-bottom: 1px solid #C2ACFD;
    border-left: 3px solid #C2ACFD;
    padding: 5px;
    margin-bottom: 10px;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget li {
    padding: 3px 0;
}

.sidebar-widget a {
    color: #555;
    text-decoration: none;
}

.sidebar-widget a:hover {
    color: #434073;
    text-decoration: underline;
}

.profile-icon {
    text-align: right;
    padding: 10px;
}

.profile-icon i {
    font-size: 50px;
    color: #434073;
    display: block;
    margin-bottom: 5px;
}

/* Mini Calendar */
.mini-calendar {
    width: 100%;
    font-size: 12px;
    border-collapse: collapse;
}

.mini-calendar th, 
.mini-calendar td {
    padding: 3px;
    text-align: center;
}

.mini-calendar th {
    background: #482B98;
    color: white;
}

.mini-calendar td {
    border: 1px solid #482B98;
}

.mini-calendar .current-day {
    background-color: #e6f7ff;
    font-weight: bold;
}

.mini-calendar .selected-day {
    background-color: #ffeb3b;
    font-weight: bold;
}

.mini-calendar .has-post a {
    color: #ff5722;
    font-weight: bold;
}

.mini-calendar a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.mini-calendar a:hover {
    background-color: #f0f0f0;
}

/* Entry highlight */
.highlight-entry {
    animation: highlight 2s ease-out;
    box-shadow: 0 0 0 2px #ffeb3b;
}

@keyframes highlight {
    from { box-shadow: 0 0 0 5px #ffeb3b; }
    to { box-shadow: 0 0 0 0 transparent; }
}