#top-menu a.hrms:before {
  content: "";
}

#top-menu a.hrms {
  display: inline-block;
  line-height: 1.2;
  vertical-align: middle;
  padding-top: 0;
  padding-bottom: 0;
}

body[class*="controller-hrms_"] {
  --hrms-bg-soft: #f5f7fa;
  --hrms-bg-card: #ffffff;
  --hrms-bg-accent: #eaf2f8;
  --hrms-border: #d4dde7;
  --hrms-primary: #1261a6;
  --hrms-primary-dark: #0b4b82;
  --hrms-primary-soft: #eef6fc;
  --hrms-success-soft: #e8f6ee;
  --hrms-warning-soft: #fff4d8;
  --hrms-danger-soft: #fdecea;
  --hrms-text: #17212b;
  --hrms-text-muted: #526476;
  --hrms-shadow: 0 8px 18px rgba(34, 49, 63, 0.08);
}

body[class*="controller-hrms_"] #content {
  background: var(--hrms-bg-soft);
  border-radius: 8px;
  border: 1px solid #dce8f4;
  padding: 16px 18px 20px 18px;
  color: var(--hrms-text);
  box-sizing: border-box;
}

body[class*="controller-hrms_"] #content h2,
body[class*="controller-hrms_"] #content h3 {
  color: var(--hrms-text);
  letter-spacing: 0;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.hrms-page {
  animation: hrms-fade-in 0.25s ease-out;
  font-size: 13px;
  line-height: 1.45;
}

.hrms-global-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 12px 0;
}

.hrms-global-nav a {
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 6px;
  border: 1px solid #c3d8ea;
  background: #fff;
  color: #2f4e67;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.hrms-global-nav a.active {
  background: var(--hrms-primary);
  border-color: var(--hrms-primary);
  color: #fff;
}

.hrms-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hrms-header h2 {
  margin: 0;
}

.hrms-subtitle {
  margin: 4px 0 0 0;
  color: var(--hrms-text-muted);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.hrms-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hrms-btn,
body[class*="controller-hrms_"] #content .hrms-toolbar a,
body[class*="controller-hrms_"] #content .hrms-toolbar input[type="submit"],
body[class*="controller-hrms_"] #content .hrms-toolbar button,
body[class*="controller-hrms_"] #content .hrms-form-actions input[type="submit"] {
  border: 1px solid #0a6bab;
  background: var(--hrms-primary);
  color: #fff;
  border-radius: 6px;
  padding: 7px 12px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(4, 86, 135, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  line-height: 1.25;
  box-sizing: border-box;
  white-space: normal;
  overflow-wrap: anywhere;
}

.hrms-btn.alt,
body[class*="controller-hrms_"] #content .hrms-btn.alt {
  border-color: #bfd5e7;
  color: var(--hrms-primary);
  background: var(--hrms-primary-soft);
  box-shadow: none;
}

body[class*="controller-hrms_"] #content .hrms-toolbar form {
  display: inline-block;
}

.hrms-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  margin: 12px 0 16px 0;
}

.hrms-card,
body[class*="controller-hrms_"] #content .box {
  border: 1px solid var(--hrms-border);
  border-radius: 8px;
  background: var(--hrms-bg-card);
  padding: 12px;
  box-shadow: var(--hrms-shadow);
}

body[class*="controller-hrms_"] #content .box {
  margin-bottom: 14px;
}

body[class*="controller-hrms_"] #content details.hrms-collapsible > summary {
  cursor: pointer;
  list-style: none;
  padding: 2px 0;
  color: var(--hrms-text);
}

body[class*="controller-hrms_"] #content details.hrms-collapsible > summary::-webkit-details-marker {
  display: none;
}

body[class*="controller-hrms_"] #content details.hrms-collapsible > summary:before {
  content: "+";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--hrms-primary-soft);
  color: var(--hrms-primary);
  font-weight: 700;
}

body[class*="controller-hrms_"] #content details.hrms-collapsible[open] > summary:before {
  content: "-";
}

body[class*="controller-hrms_"] #content details.hrms-collapsible form,
body[class*="controller-hrms_"] #content details.hrms-collapsible .hrms-table-wrap,
body[class*="controller-hrms_"] #content details.hrms-collapsible .nodata {
  margin-top: 10px;
}

.hrms-card .label {
  color: var(--hrms-text-muted);
  font-size: 12px;
  margin-bottom: 6px;
  line-height: 1.3;
}

.hrms-card .value {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--hrms-text);
  overflow-wrap: anywhere;
}

.hrms-quick-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hrms-quick-links a {
  background: #fff;
  border: 1px solid #c7d8e5;
  border-radius: 6px;
  color: var(--hrms-primary-dark);
  padding: 7px 10px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.hrms-muted {
  color: var(--hrms-text-muted);
}

.hrms-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--hrms-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--hrms-shadow);
}

body[class*="controller-hrms_"] #content table.list,
table.list.hrms-table {
  margin: 0;
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  min-width: 720px;
}

body[class*="controller-hrms_"] #content table.list th,
body[class*="controller-hrms_"] #content table.list td {
  border: 0;
  border-bottom: 1px solid #e5edf5;
  padding: 10px 10px;
  vertical-align: top;
  color: var(--hrms-text);
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: anywhere;
}

body[class*="controller-hrms_"] #content table.list thead th {
  background: #eef3f7;
  color: #273849;
  font-weight: 700;
  font-size: 12px;
  text-transform: none;
}

body[class*="controller-hrms_"] #content table.list tbody tr:hover {
  background: #f8fbff;
}

.hrms-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 700;
  background: #ebf2f8;
  color: #4f6273;
  line-height: 1.2;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.hrms-kpi {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 6px;
  background: #f2f5f7;
  color: #355166;
  font-size: 12px;
  line-height: 1.2;
}

.hrms-status-present,
.hrms-status-approved,
.hrms-status-active {
  background: var(--hrms-success-soft);
  color: #176138;
}

.hrms-status-late,
.hrms-status-pending,
.hrms-status-probation {
  background: var(--hrms-warning-soft);
  color: #8a5b00;
}

.hrms-status-absent,
.hrms-status-rejected,
.hrms-status-inactive,
.hrms-status-resigned,
.hrms-status-terminated {
  background: var(--hrms-danger-soft);
  color: #8b2b23;
}

.hrms-action-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  white-space: normal;
  font-size: 0;
}

body[class*="controller-hrms_"] #content .hrms-action-links a,
body[class*="controller-hrms_"] #content .hrms-action-links a:visited {
  border: 1px solid #c5d4df;
  border-radius: 6px;
  color: var(--hrms-primary-dark);
  background: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  padding: 4px 8px;
  text-decoration: none;
}

.hrms-auto-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px 0;
  flex-wrap: wrap;
}

.hrms-auto-filter input[type="text"] {
  width: 100%;
  max-width: 340px;
  border: 1px solid #b9cedf;
  border-radius: 6px;
  padding: 7px 9px;
  box-sizing: border-box;
}

.hrms-doc-tools input[type="text"] {
  width: 100%;
  max-width: 360px;
  border: 1px solid #b9cedf;
  border-radius: 6px;
  padding: 7px 9px;
  box-sizing: border-box;
}

.hrms-doc-import input[type="file"] {
  margin-right: 8px;
}

.hrms-doc-wrap {
  max-height: calc(100vh - 260px);
  overflow: auto;
}

table.hrms-doc-index {
  min-width: 1650px;
}

.hrms-doc-col-no {
  min-width: 52px;
  max-width: 52px;
  text-align: center;
}

.hrms-doc-col-name {
  min-width: 210px;
}

.hrms-doc-col-role {
  min-width: 130px;
}

body[class*="controller-hrms_"] #content table.hrms-doc-index thead th {
  position: sticky;
  top: 0;
  z-index: 5;
}

.hrms-doc-cell {
  min-width: 140px;
  white-space: normal;
  line-height: 1.25;
}

.hrms-doc-entry {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  margin-bottom: 2px;
}

body[class*="controller-hrms_"] #content a.hrms-mini-link,
body[class*="controller-hrms_"] #content a.hrms-mini-link:visited {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: none;
  text-decoration: none !important;
  border: 1px solid #b9d4ea !important;
  border-radius: 6px;
  padding: 2px 8px;
  background: #f3f9ff !important;
  color: #165384 !important;
  line-height: 1.2;
}

body[class*="controller-hrms_"] #content a.hrms-mini-link.alt,
body[class*="controller-hrms_"] #content a.hrms-mini-link.alt:visited {
  background: #e9f7ee !important;
  border-color: #b7dcc5 !important;
  color: #1d6b3d !important;
}

body[class*="controller-hrms_"] #content a.hrms-mini-link.add,
body[class*="controller-hrms_"] #content a.hrms-mini-link.add:visited {
  background: #fff5df !important;
  border-color: #f1d58c !important;
  color: #815200 !important;
}

.hrms-doc-count {
  display: inline-block;
  font-size: 11px;
  color: #5f7386;
  background: #eef4fb;
  border: 1px solid #d5e1ee;
  border-radius: 6px;
  padding: 2px 7px;
}

.hrms-doc-ref {
  max-width: 180px;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  overflow-wrap: anywhere;
}

body[class*="controller-hrms_"] #content table.hrms-doc-index tbody tr:nth-child(odd) {
  background: #fcfeff;
}

body[class*="controller-hrms_"] #content table.hrms-doc-index tbody tr:nth-child(even) {
  background: #f7fbff;
}

table.hrms-table .hrms-truncate {
  max-width: 430px;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  display: block;
  overflow-wrap: anywhere;
}

body[class*="controller-hrms_"] #content form.hrms-form {
  border: 1px solid var(--hrms-border);
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  box-shadow: var(--hrms-shadow);
}

body[class*="controller-hrms_"] #content form.hrms-form > p {
  margin: 0 0 10px 0;
}

body[class*="controller-hrms_"] #content form.hrms-form label {
  font-weight: 600;
  color: #274057;
  line-height: 1.3;
}

body[class*="controller-hrms_"] #content form.hrms-form input[type="text"],
body[class*="controller-hrms_"] #content form.hrms-form input[type="email"],
body[class*="controller-hrms_"] #content form.hrms-form input[type="date"],
body[class*="controller-hrms_"] #content form.hrms-form input[type="datetime-local"],
body[class*="controller-hrms_"] #content form.hrms-form input[type="number"],
body[class*="controller-hrms_"] #content form.hrms-form select,
body[class*="controller-hrms_"] #content form.hrms-form textarea {
  width: 100%;
  max-width: 580px;
  margin-top: 4px;
  border: 1px solid #b9cedf;
  border-radius: 6px;
  padding: 8px 10px;
  background: #fcfeff;
  box-sizing: border-box;
  line-height: 1.3;
}

body[class*="controller-hrms_"] #content form.hrms-form input:focus,
body[class*="controller-hrms_"] #content form.hrms-form select:focus,
body[class*="controller-hrms_"] #content form.hrms-form textarea:focus,
.hrms-auto-filter input[type="text"]:focus,
.hrms-doc-tools input[type="text"]:focus {
  border-color: var(--hrms-primary);
  box-shadow: 0 0 0 2px rgba(18, 97, 166, 0.16);
  outline: none;
}

body[class*="controller-hrms_"] #content .hrms-form-actions {
  margin-top: 12px;
}

body[class*="controller-hrms_"] #content .errorExplanation {
  border-radius: 8px;
  border: 1px solid #f2b8b5;
  background: #fff2f1;
}

.hrms-embed-box iframe,
body[class*="controller-hrms_"] #content iframe {
  border-radius: 6px;
  max-width: 100%;
}

@media (max-width: 820px) {
  body[class*="controller-hrms_"] #content {
    padding: 12px;
    border-radius: 10px;
  }

  .hrms-header,
  .hrms-auto-filter,
  .hrms-doc-tools,
  .hrms-doc-import,
  body[class*="controller-hrms_"] #content .hrms-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hrms-toolbar,
  .hrms-quick-links,
  .hrms-global-nav {
    gap: 6px;
  }

  .hrms-toolbar,
  body[class*="controller-hrms_"] #content .hrms-form-actions {
    width: 100%;
  }

  .hrms-btn,
  body[class*="controller-hrms_"] #content .hrms-toolbar a,
  body[class*="controller-hrms_"] #content .hrms-toolbar input[type="submit"],
  body[class*="controller-hrms_"] #content .hrms-toolbar button,
  body[class*="controller-hrms_"] #content .hrms-form-actions input[type="submit"] {
    box-sizing: border-box;
    justify-content: center;
    min-height: 36px;
    text-align: center;
    white-space: normal;
  }

  .hrms-auto-filter input[type="text"],
  .hrms-doc-tools input[type="text"],
  body[class*="controller-hrms_"] #content form.hrms-form input[type="text"],
  body[class*="controller-hrms_"] #content form.hrms-form input[type="email"],
  body[class*="controller-hrms_"] #content form.hrms-form input[type="date"],
  body[class*="controller-hrms_"] #content form.hrms-form input[type="datetime-local"],
  body[class*="controller-hrms_"] #content form.hrms-form input[type="number"],
  body[class*="controller-hrms_"] #content form.hrms-form select,
  body[class*="controller-hrms_"] #content form.hrms-form textarea {
    max-width: none;
    width: 100%;
  }

  .hrms-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .hrms-table-wrap,
  .hrms-doc-wrap {
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  body[class*="controller-hrms_"] #content table.list th,
  body[class*="controller-hrms_"] #content table.list td {
    padding: 8px 8px;
  }

  table.hrms-table .hrms-truncate,
  .hrms-doc-ref {
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  body[class*="controller-hrms_"] #content {
    padding: 10px;
  }

  .hrms-card .value {
    font-size: 20px;
  }

  .hrms-global-nav a,
  .hrms-quick-links a {
    flex: 1 1 130px;
    text-align: center;
  }
}

@keyframes hrms-fade-in {
  from {
    opacity: 0.65;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Critical readability layer for every HRMS screen. Keep this at the end. */
body[class*="controller-hrms_"] #content {
  background: #f7f9fb !important;
  border: 1px solid #d8e1ea !important;
  border-radius: 8px !important;
  color: #17212b !important;
  min-height: calc(100vh - 145px);
  padding: 22px 24px 28px 24px !important;
}

body[class*="controller-hrms_"] #content .hrms-page {
  color: #17212b;
  font-size: 14px;
  line-height: 1.5;
  max-width: none;
}

body[class*="controller-hrms_"] #content h2 {
  color: #111827 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  margin: 0 0 16px 0 !important;
}

body[class*="controller-hrms_"] #content h3 {
  color: #1f2937 !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

body[class*="controller-hrms_"] #content .hrms-global-nav {
  gap: 8px !important;
  margin: 0 0 18px 0 !important;
}

body[class*="controller-hrms_"] #content .hrms-global-nav a,
body[class*="controller-hrms_"] #content .hrms-quick-links a {
  background: #ffffff !important;
  border: 1px solid #b9cee0 !important;
  border-radius: 6px !important;
  color: #124f83 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  min-height: 34px;
  padding: 8px 12px !important;
  text-decoration: none !important;
}

body[class*="controller-hrms_"] #content .hrms-global-nav a.active {
  background: #1261a6 !important;
  border-color: #1261a6 !important;
  color: #ffffff !important;
}

body[class*="controller-hrms_"] #content form.hrms-form {
  background: #ffffff !important;
  border: 1px solid #ccd8e4 !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 18px rgba(34, 49, 63, 0.08) !important;
  box-sizing: border-box;
  max-width: 860px;
  padding: 18px !important;
}

body[class*="controller-hrms_"] #content form.hrms-form > p {
  color: #17212b !important;
  margin: 0 0 14px 0 !important;
}

body[class*="controller-hrms_"] #content form.hrms-form label {
  color: #1f3850 !important;
  display: inline-block;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  margin: 0 0 5px 0 !important;
}

body[class*="controller-hrms_"] #content form.hrms-form input[type="text"],
body[class*="controller-hrms_"] #content form.hrms-form input[type="email"],
body[class*="controller-hrms_"] #content form.hrms-form input[type="date"],
body[class*="controller-hrms_"] #content form.hrms-form input[type="datetime-local"],
body[class*="controller-hrms_"] #content form.hrms-form input[type="number"],
body[class*="controller-hrms_"] #content form.hrms-form select,
body[class*="controller-hrms_"] #content form.hrms-form textarea,
body[class*="controller-hrms_"] #content .hrms-auto-filter input[type="text"],
body[class*="controller-hrms_"] #content .hrms-doc-tools input[type="text"] {
  background: #ffffff !important;
  border: 1px solid #9eb8cf !important;
  border-radius: 6px !important;
  box-sizing: border-box !important;
  color: #111827 !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  max-width: 760px !important;
  min-height: 36px !important;
  padding: 8px 10px !important;
  width: 100% !important;
}

body[class*="controller-hrms_"] #content form.hrms-form textarea {
  min-height: 96px !important;
  resize: vertical;
}

body[class*="controller-hrms_"] #content form.hrms-form input[type="checkbox"] {
  margin-right: 6px;
  transform: translateY(1px);
}

body[class*="controller-hrms_"] #content form.hrms-form input[type="submit"],
body[class*="controller-hrms_"] #content .hrms-form-actions input[type="submit"],
body[class*="controller-hrms_"] #content .hrms-toolbar a.hrms-btn,
body[class*="controller-hrms_"] #content .hrms-btn {
  align-items: center;
  background: #1261a6 !important;
  border: 1px solid #0d548f !important;
  border-radius: 6px !important;
  box-shadow: 0 5px 12px rgba(18, 97, 166, 0.22) !important;
  color: #ffffff !important;
  display: inline-flex;
  font-size: 13px !important;
  font-weight: 700 !important;
  justify-content: center;
  line-height: 1.25 !important;
  min-height: 38px !important;
  padding: 9px 14px !important;
  text-transform: none !important;
}

body[class*="controller-hrms_"] #content .hrms-btn.alt {
  background: #eef6fc !important;
  border-color: #b9cee0 !important;
  box-shadow: none !important;
  color: #124f83 !important;
}

body[class*="controller-hrms_"] #content .box,
body[class*="controller-hrms_"] #content .hrms-card,
body[class*="controller-hrms_"] #content .hrms-table-wrap {
  border-radius: 8px !important;
}

body[class*="controller-hrms_"] #content table.list th,
body[class*="controller-hrms_"] #content table.list td {
  color: #17212b !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  padding: 10px 12px !important;
  white-space: normal !important;
}

body[class*="controller-hrms_"] #content table.list thead th {
  background: #eaf1f7 !important;
  color: #1f2937 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}

body[class*="controller-hrms_"] #content .hrms-badge,
body[class*="controller-hrms_"] #content .hrms-kpi,
body[class*="controller-hrms_"] #content a.hrms-mini-link {
  border-radius: 6px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  white-space: normal !important;
}

@media (min-width: 1100px) {
  body[class*="controller-hrms_"] #content form.hrms-form {
    max-width: 920px;
  }
}

@media (max-width: 820px) {
  body[class*="controller-hrms_"] #content {
    padding: 14px !important;
  }

  body[class*="controller-hrms_"] #content form.hrms-form {
    max-width: none;
    padding: 14px !important;
  }

  body[class*="controller-hrms_"] #content .hrms-global-nav a,
  body[class*="controller-hrms_"] #content .hrms-quick-links a {
    flex: 1 1 145px;
    text-align: center;
  }
}

/* Compact correction after the critical layer: readable without oversized controls. */
body[class*="controller-hrms_"] #content {
  padding: 18px 20px 24px 20px !important;
}

body[class*="controller-hrms_"] #content h2 {
  font-size: 19px !important;
  margin-bottom: 12px !important;
}

body[class*="controller-hrms_"] #content .hrms-global-nav {
  gap: 6px !important;
  margin-bottom: 14px !important;
}

body[class*="controller-hrms_"] #content .hrms-global-nav a,
body[class*="controller-hrms_"] #content .hrms-quick-links a {
  font-size: 12px !important;
  min-height: 28px !important;
  padding: 5px 10px !important;
}

body[class*="controller-hrms_"] #content form.hrms-form {
  max-width: 640px;
  padding: 14px !important;
}

body[class*="controller-hrms_"] #content form.hrms-form > p {
  margin-bottom: 11px !important;
}

body[class*="controller-hrms_"] #content form.hrms-form label {
  font-size: 12px !important;
  margin-bottom: 3px !important;
}

body[class*="controller-hrms_"] #content form.hrms-form input[type="text"],
body[class*="controller-hrms_"] #content form.hrms-form input[type="email"],
body[class*="controller-hrms_"] #content form.hrms-form input[type="date"],
body[class*="controller-hrms_"] #content form.hrms-form input[type="datetime-local"],
body[class*="controller-hrms_"] #content form.hrms-form input[type="number"],
body[class*="controller-hrms_"] #content form.hrms-form select,
body[class*="controller-hrms_"] #content form.hrms-form textarea,
body[class*="controller-hrms_"] #content .hrms-auto-filter input[type="text"],
body[class*="controller-hrms_"] #content .hrms-doc-tools input[type="text"] {
  font-size: 13px !important;
  max-width: 560px !important;
  min-height: 32px !important;
  padding: 6px 9px !important;
}

body[class*="controller-hrms_"] #content form.hrms-form textarea {
  min-height: 78px !important;
}

body[class*="controller-hrms_"] #content form.hrms-form input[type="submit"],
body[class*="controller-hrms_"] #content .hrms-form-actions input[type="submit"],
body[class*="controller-hrms_"] #content .hrms-toolbar a.hrms-btn,
body[class*="controller-hrms_"] #content .hrms-btn {
  font-size: 12px !important;
  min-height: 32px !important;
  padding: 6px 12px !important;
}
