/* =======================================
   Custom Minimalist Theme for OJS 3
   ======================================= */

/* Body */
body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #2c2c2c;
  background-color: #fafafa;
  margin: 0;
  padding: 0;
}

/* Header */
.pkp_site_name {
  font-size: 28px;
  font-weight: 700;
  color: #1a73e8;
  letter-spacing: 0.5px;
}

.pkp_navigation_primary > li > a {
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  color: #444;
  transition: all 0.3s ease;
}

.pkp_navigation_primary > li > a:hover {
  color: #1a73e8;
  border-bottom: 2px solid #1a73e8;
}

/* Footer */
.pkp_footer {
  background-color: #1a73e8;
  color: #fff;
  padding: 25px;
  text-align: center;
  font-size: 14px;
}

.pkp_footer a {
  color: #ffd54f;
  transition: color 0.3s ease;
}

.pkp_footer a:hover {
  color: #fff;
}

/* Tombol */
.pkp_button,
button,
input[type="submit"],
input[type="button"] {
  background-color: #1a73e8;
  border: none;
  border-radius: 6px;
  color: #fff !important;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pkp_button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  background-color: #0d47a1;
}

/* Artikel Judul */
.obj_article_summary .title a {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
}

.obj_article_summary .title a:hover {
  color: #1a73e8;
}

/* Sidebar */
.pkp_block {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.05);
}

.pkp_block .title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a73e8;
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  font-size: 14px;
}

table th,
table td {
  border: 1px solid #e0e0e0;
  padding: 10px;
  text-align: left;
}

table th {
  background: #f5f5f5;
  font-weight: 600;
}

/* Form */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #1a73e8;
  outline: none;
}

/* Breadcrumb */
.pkp_navigation_breadcrumbs a {
  color: #1a73e8;
  text-decoration: none;
}

.pkp_navigation_breadcrumbs a:hover {
  text-decoration: underline;
}