/* Root */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0rem;
}

/* Container */
.container > * {
    margin-bottom: 10px;
    margin-top: 0px;
}

@media screen and (min-width: 47em) {
    .container > * {
        margin-bottom: -1.23em;
    }
  /* Define the grid */
    .container {
        display: grid;
        grid-template-columns: 1.0fr 2.7fr 1.0fr;
        grid-gap: 0 0;
    }
  /* Place items on the grid */
    .header,
    .footer {
        grid-column: 1 / -1;
    }
    .content {
        grid-column: 2 / 3;
    }
}

.container {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    max-width: 960px;
    margin: 0 auto;
}

.container > * {
    background-color: #ffffff;
    padding: 0.5em;
}

.content {
    min-height: 450px;
}

@media screen and (max-width: 750px) {
    .left-bar, .right-bar {
        display: none;
    }
}

/* Header and Navigation */
header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: -webkit-sticky;
    position: sticky;
    z-index: 1;
    top: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem;
    max-width: 960px;
    margin: 0 auto;
}
.logo {
    color: #4285F4;
    margin-bottom: -4px;
}
.nav-links {
    list-style: none;
    display: flex;
}
.nav-links li {
    margin: 0 15px;
}
.nav-links a {
    color: #4f4e4e;
    text-decoration: none;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #050505;
}
.search-container {
    display: flex;
}
.search-container input {
    padding: 0.5rem;
    border: none;
    border-radius: 3px;
}
.search-container button {
    padding: 0.3rem;
    margin-left:-23px;
    background:transparent;
    border:none;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: #050505;
    margin: 3px 0;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        background-color: #ffffff;
        width: 100%;
        top: 44px;
        left: 0;
    }
    .nav-links li {
        padding: 10px;
        margin-left: 0px;
    }
    .nav-links.active {
        display: flex;
    }
    .menu-toggle {
        display: flex;
    }
}

/* Thumbnail */
.image-thumbnail {
    position: relative;
    display: inline-block;
}
.image-thumbnail img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
        }
.text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    font-size: 25px;
    text-shadow: 1px 1px #999999;
    padding: 10px;
}
.text-overlay2 {
    position: absolute;
    bottom: 0px;
    left: 0px;
    color: white;
    font-size: 25px;
    text-shadow: 1px 1px #999999;
    padding: 10px;
    width: 80px;
}

/* Two Column Biography */
.two-columns {
    display: flex;
    margin-top: 6px;
}
.two-columns h2 {
    font-size: 14px;
    color: #595959;
    padding: 5px;
    margin-top: 0px;
    margin-bottom: 0px;
}
.two-columns p {
    padding: 5px;
    font-size: 14px;
    color: #595959;
    margin-top: -5px;
    margin-bottom: 0px;
}
.column {
    flex: 1;
    padding: 5px;
    box-sizing: border-box;
}
.left-column {
    background-color: #e3e3e3;
    border-radius: 18px;
    margin-right: 2px;
    flex: 0 0 38%;
}
.right-column {
    background-color: #e3e3e3;
    border-radius: 18px;
    margin-left: 2px;
    width: 67%;
} 

/* Accordion */
.accordion {
    background-color: #fff;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    border-bottom: 1px solid #d9d9d9;
}

.actives, .accordion:hover {
    background-color: #fff;
}

.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.actives:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel p {
    margin: 8px;
}

/* Stylist Text */
h2 {
    font-size: 20px;
    color: #575757;
}

h3 {
    font-size: 18px;
    color: #575757;
    margin-top: 10px;
    margin-bottom: 10px;
}

p {
    margin-top: 1em;
    margin-bottom: 1em;
}

/* Horizontal List */
.horizontal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.horizontal-list li {
    margin: 3px;
}

.horizontal-list img {
    display: block;
    width: 100px;
    height: auto;
    border: 1px solid #bdbdbd;
    margin-bottom: 5px;
    border-radius: 8px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.horizontal-list a {
    text-decoration: none;
    color: black;
    display: flex;
    flex-direction: column;
}
.horizontal-list a:hover {
    color: blue;
}

/* Footer */
.footer {
    padding: 8px;
    background-color: #f8f8f8;
    color: #606060;
    border-top: 1px solid #e7e7e7;
    margin-top: 30px;
}

.footer-links{
    margin-top: 1px;
}

.footer ul {
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer li {
    display: inline-block;
    padding: 0 10px;
}

.footer ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}

.footer ul a:hover {
    opacity: 1;
}

.footer .copyright {
    margin-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 0;
}

.footer .footer-break{
    height:2px;
    border-width:0;
    color:gray;
    background-color:white;
}

.footer-ad {
    margin: 20px;
}

/* Box Title */
.box-title {
    background-color: #f0f0f0;
    border: 1px solid #f0f0f0;
    color: #575757;
    font-size: 18px;
    margin-bottom: 2px;
    padding: 5px;
    border-radius: 0px;
}

/* Search Box */
.search-box {
    background: #f7f5f5;
    border: 1px solid #f7f7f7;
    padding: 5px;
}
.search-box p {
    margin: 5px;
}
.search-box h2 {
    margin: 5px;
}
.search-box select {
    cursor:pointer;
    display:inline-block;
    font:normal 11px/22px Arial, Sans-Serif;
    color:black;
    border:1px solid #ddd;
    padding: 8px;
}

.year-list {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    font-family: Arial, sans-serif;
}

.year-list a {
    text-decoration: none;
    color: black;
    background-color: #f7f5f5;
    border: 1px solid #f7f7f7;
    padding: 3px;
}

.year-list a:hover {
    text-decoration: underline;
}

/* Table Kalender */
#kalender {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
    border: none;
}

#kalender td, #kalender th {
    border: none;
    padding: 3px;
    text-align: center;
}

#kalender tr:nth-child(even) {
    background-color: #fafafa;
}

#kalender tr:hover {
    background-color: #ccc8c8;
}

#kalender th {
    padding-top: 8px;
    padding-bottom: 8px;
    text-align: left;
    background-color: #5d5e5e;
    color: white;
    font-size: 14px;
    text-align: center;
}

/* List Years Sidebar */
li.list-year {
    list-style-type: none;
    background: #f7f5f5;
    margin: 2px;
    padding: 5px;
    border: 1px solid #f7f7f7;
    font-weight: 400;
    letter-spacing: -1.4px;
    word-spacing: 1px;
}

ul.no-list {
    list-style-type: none;
    margin-top: 10px;
    margin-bottom: 10px;
}

ul.no-list li {
    list-style-type: none;
    margin: 1px;
    padding: 3px;
    border-bottom: 1px solid #f2f2f2;
    background-color: #fafafa;
}

/* Tabs List */
.tab {
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.tab button {
    background-color: black;
    border: none;
    padding: 5px 6px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 10px;
    margin-bottom: 10px;
    color: white;
}

.tab button:hover {
    background-color: #ddd;
}

.tab button.active {
    background-color: #ccc;
}

.tabcontent {
    display: none;
    padding: 0px;
    border: 0px solid #ccc;
    border-top: none;
}

.dateborn {
    background: #141414;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding:2px;
    font-weight: bold;
    color: white;
    border-bottom: 1px solid #ddd;
}

/* ID Table */
#table {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

#table td, #table th {
    border: none;
    padding: 5px;
}

#table tr:nth-child(even) {
    background-color: #f2f2f2;
}

#table tr:hover {
    background-color: #ddd;
}

#table th {
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: left;
    background-color: #141414;
    color: white;
}

/* HR Default */
hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

/* Links Style */
a.linko {
    color: #424242;
    text-decoration: none;
}

a.linko:hover {
    color: #adadad;
}



/* Contact Form */
.contact-form {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    text-align: center;
}
.contact-form h2 {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-weight: bold;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: none;
}
.contact-form button {
    width: 100%;
    padding: 10px;
    background-color: #5e5e5e;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.content li {
    margin-left: 20px;
    padding: 3px;
}

/* Notify */
ul.notify {
    list-style: none;
    background-color:#edf0ff;
    padding:25px;
    padding-top:5px;
    padding-bottom:5px;
}

li.lired::before {
    content: "■";
    color: red;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}

li.liblue::before {
    content: "■";
    color: blue;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}

li.ligreen::before {
    content: "■";
    color: green;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}

li.liyellow::before {
    content: "■";
    color: yellow;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}

li.liblack::before {
    content: "■";
    color: black;
    color:blue;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}

/* Style for History of School */
.pendidikan {
    background: #000;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding:2px;
    font-weight: bold;
    color: #fff;
    border-bottom: 1px solid #fff;
}
.pendidikan2 {
    border-bottom: 1px solid #c4c4c4;
    background: #000;
    text-align: center;
    padding:2px;
    font-weight: bold;
    margin-top: 0px;
    color: #fff;
}

.content span {
    font-family: Roboto;
    font-weight: bold;
    color: #ff3333;
    margin-left: 5px;
    margin-right: 5px;
}

.content strong {
    color: #3b3b3b;
}

/* Dual Column Ages */
.column-ages {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    margin-bottom: 8px;
}
.column-age {
    flex: 1;
    box-sizing: border-box;
}
.left-age {
    background-color: #f4f4f4;
    margin-right: 1.5px;
    border-radius: 10px;
    margin-left: 3px;
}
.right-age {
    background-color: #f4f4f4;
    margin-left: 1.5px;
    border-radius: 10px;
    margin-right: 3px;
}
@media (max-width: 350px) {
    .column-ages {
        flex-direction: column;
    }

    .left-age, .right-age {
        margin: 0;
        margin-bottom: 10px;
    }

    .right-age {
        margin-bottom: 0;
    }
}