/*== DEFAULT ==*/
:root{
    --body-bg: #0e0e0e;
    --body-color: #f5f5f5;
    --red: #ce2029;
    --active: hsla(0, 0%, 96%, 0.675);
}
.navbar{
    background-color: var(--body-bg);
    color: var(--body-color);
    height: 60px;
}
.sidebar-heading{
    border-bottom: 1px solid gray;
}
#sidebarToggle{
    background-color: var(--red);
    border: 0;
    transition: 0.3s;
}
#sidebarToggle:hover{
    opacity: 0.9;
}
#sidebarToggle:focus {
    box-shadow: none;
}

#sidebar-wrapper {
    position: relative;
    padding-bottom: 30px;
}
#sidebar-wrapper #logo {
    position: absolute;
    left: 20%;
    bottom: 10px;
    width: 60%;
    opacity: 0.4;
}

#content li{
    color: var(--body-color);
    background-color: var(--red);
    padding: 10px 10px;
    height: auto;
    list-style: none;
    margin-bottom: 15px;
    margin-left: 1%;
    width:95%;
    transition: 0.5s;
}
#content li:hover{
    background-color: var(--body-bg);
    border-radius: 5px;
}
#content a{
    color: var(--body-color);
    text-decoration: none;
    font-weight: bold;
}
#content{
    padding-bottom: 15px;
}
a:hover {
    color: var(--body-bg);
}
footer {
    background-color: var(--body-bg);
    color: var(--body-color);
    padding-top: 15px;
    padding-bottom: 15px;
}
footer a{
    color: var(--body-color);
    text-decoration: none;
}
footer a:hover{
    color: var(--body-color);
    text-decoration: underline;
}

/* ARSO */
#arso{
    position:relative;
    z-index:0;
}
#sk-loka{
    position: absolute;
    z-index: 3;
    top:0;
    bottom:0;
}

/* RSS */
.rssfeed {
    font-size: 20px;
    padding: 10px;
}
.feed-item-title {
    font-size: larger;
    color: var(--red);
}
#content a{
    color: var(--red);
}
.rssfeed div{
    display: none;
}
.feed-item-desc {
    font-size: medium;
    padding-bottom: 10px;
    border-bottom: var(--body-bg) solid 1px;
    margin-bottom: none;
}
.feed-title{
    display: none;
}
#content img {
  display: block;
  max-width: 95%;
  height: auto;
}
table, th, td {
  border: 1px solid;
}
table {
  border-collapse: collapse;
}
th{
    padding: 5px;
}
tr:nth-child(odd){
    background-color: #cecccc;
}
td{
    text-align: center;
}

.hidden{
    opacity: 0;
}
