.notfound-container {
    max-width: 600px;
    margin: 100px auto;
    text-align: left;
    font-family: sans-serif;
}

.notfound-container h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.notfound-container p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.search-box {
    display: flex;
    max-width: 400px;
    border: 1px solid #ccc;
    border-radius: 2px;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    padding: 12px;
    border: none;
    outline: none;
    font-size: 14px;
}

.search-box button {
    background-color: #0088bb;
    border: none;
    padding: 12px 20px;
    color: white;
    cursor: pointer;
}

.search-box button:hover {
    background-color: #0077aa;
}

/*==================
Elementary Teacher
====================*/
/* ==== Global Style ==== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
}

/* ==== Banner Section ==== */
.banner-section {
    text-align: center;
    background-color: #fff;
    padding: 20px;
}

.banner-img {
    max-width: 100%;
    height: auto;
}

/* ==== Content Section ==== */
.content-section {
    padding: 30px;
    display: flex;
    justify-content: center;
}

/* ==== Table Wrapper ==== */
.table-wrapper {
    width: 90%;
    overflow-x: auto;
    background-color: #fff;
    border: 1px solid #ccc;
}

.table-wrapper a {
    color: #3399ff; /* biru muda */
    text-decoration: underline;
}

.content-section table th {
    background-color: #fdfdfd;
    padding: 10px;
    text-align: left;
}

.content-section table td {
    padding: 10px;
    vertical-align: top;
}

.content-section table a {
    color: #007bff;
    text-decoration: underline;
}

.table-wrapper {
    overflow-x: auto;
}

/* ==== Table Structure ==== */
table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #999;
}

/* ==== Table Header with Multiple Rows ==== */
thead tr:first-child th {
    background-color: #ffffff; /* Header baris pertama */
}

thead tr:nth-child(2) th {
    background-color: #e1e1e1; /* Header baris kedua */
}

/* ==== Table Cells (Header and Body) ==== */
th, td {
    padding: 12px;
    border: 1px solid #ccc;
    text-align: center;
    vertical-align: middle;
    background-color: #fff;
}

/* ==== Alternating Row Colors in Body ==== */
tbody tr:nth-child(even) {
    background-color: #f5f5f5;
}

/* ==== Link Style ==== */
a,
a:hover,
a:active,
a:visited,
a:focus {
    color: inherit;
    text-decoration: none;
}
/*============================*/
.journal-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    table-layout: fixed;
}

.journal-table th,
.journal-table td {
    border: 1px solid #ccc;
    padding: 10px;
    width: 50%;
    text-align: center !important;     /* Paksa rata tengah */
    vertical-align: top;
}

.journal-table thead th {
    text-align: center !important;
    vertical-align: middle !important;
}


.journal-table th {
    background-color: #e0e0e0;
    font-weight: bold;
}

.journal-entry a {
    color: #0073e6;
    text-decoration: underline;
    font-weight: 500;
    display: block;
}

.journal-meta {
    font-size: 0.9em;
    color: #444;
    margin-top: 2px;
}


