/* css/style.css ss*/
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f6fc; /* Biru pastel sangat terang */
    color: #333;
}

header {
    background-color: #85c1e9; /* Biru pastel */
    padding: 5px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.container {
    display: flex;
    min-height: calc(100vh - 80px);
}

.sidebar {
    width: 20%;
    background-color: #eaf4fb; /* biru pastel muda */
    padding: 20px;
    box-sizing: border-box;
    border-right: 1px solid #cddfea;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li {
    margin-bottom: 12px;
    font-weight: bold;
}

.sidebar ul ul {
    padding-left: 20px;
    margin-top: 5px;
}

.sidebar a {
    text-decoration: none;
    color: #3498db; /* biru lembut */
    transition: color 0.3s;
}

.sidebar a:hover {
    color: #21618c;
}

.content {
    width: 80%;
    padding: 30px;
    box-sizing: border-box;
    background-color: #ffffff;
    box-shadow: inset 0 0 10px #d6eaf8;
    overflow-y: auto;
}

h2 {
    margin-top: 0;
    color: #2e86c1;
    border-bottom: 2px solid #aed6f1;
    padding-bottom: 5px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

table, th, td {
    border: 1px solid #c5dfea;
}

th {
    background-color: #d6eaf8;
    color: #2c3e50;
    padding: 10px;
    text-align: left;
}

td {
    padding: 10px;
    vertical-align: top;
}

button {
    padding: 6px 12px;
    background-color: #5dade2;
    border: none;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2e86c1;
}

.popup {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 20px;
    width: 100%;
    max-width: 950px;*/
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    position: relative;

/*    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 20px;
    max-width: none;
    max-height: none;
    overflow: auto;*/
}

.popup-content .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.popup-content .close:hover {
    color: #333;
}

input[type="text"] {
    width: 100%;
    padding: 6px;
    border: 1px solid #bcdff1;
    border-radius: 4px;
    background-color: #f8fbfe;
}

.popup-buttons {
	align-items: right;
    margin-top: 50px;
    text-align: right;
}

.popup-buttons button {
    margin-left: 10px;
    padding: 8px 16px;
    font-size: 14px;
}