/* style.css */
body {
    font-family: sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Tampilan Login */
.login-container {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
    margin: 100px auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.login-container h2 {
    text-align: center;
    color: #0056b3;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.btn-primary {
    width: 100%;
    padding: 10px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
.btn-primary:hover {
    background-color: #004494;
}
.error-msg {
    color: red;
    margin-bottom: 15px;
    font-size: 0.9em;
    text-align: center;
}

/* Tampilan Dashboard */
.dashboard-wrapper {
    margin: 20px;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 15px 20px;
    border-bottom: 2px solid #ddd;
    border-radius: 8px 8px 0 0;
}
.header h2 {
    margin: 0;
    color: #333;
}
.btn-logout {
    background-color: #dc3545;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
}
.btn-logout:hover {
    background-color: #c82333;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}
th {
    background-color: #0056b3;
    color: white;
}
input[type="url"] {
    width: 95%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.btn-save {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
}
.btn-save:hover {
    background-color: #218838;
}
.catatan-dosen {
    color: #d9534f;
    font-style: italic;
}
.alert-success {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    border: 1px solid #c3e6cb;
}
/* style.css tambahan */
input[type="url"] { width: 100%; box-sizing: border-box; padding: 5px; }
table tr:nth-child(even) { background-color: #f2f2f2; }
textarea { width: 100%; height: 80px; margin-top: 10px; }
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); }
.modal-content { background: #fff; margin: 15% auto; padding: 20px; width: 50%; border-radius: 5px; }