/* Kelcommerce by Akretio */
/* Main CSS - Base Layout & Components */

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  background: var(--color-bg, #f4f6f9);
  font-family: var(--font-sans, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
  margin: 0;
  padding: 0;
  font-size: 15px;
  text-align: center;
  line-height: 1.6;
  color: var(--color-text, #1a1a2e);
}

div, td {
  text-align: left;
  font-size: 14px;
}

input, textarea, select {
  border: 1px solid var(--color-border, #e2e6ee);
  padding: 8px 12px;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 14px;
  border-radius: var(--radius-sm, 6px);
  background: var(--color-bg-card, #16152a);
  color: var(--color-text, #1a1a2e);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--color-primary-light, #4692BF);
  box-shadow: 0 0 0 3px rgba(70,146,191,0.15);
}

input[type="submit"], input[type="reset"] {
  background: var(--color-primary, #213181);
  color: var(--color-white, #fff);
  border: none;
  padding: 10px 24px;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius-md, 10px);
  transition: all 0.2s;
}

input[type="submit"]:hover, input[type="reset"]:hover {
  background: var(--color-primary-dark, #1a2766);
  border: none;
  padding: 10px 24px;
  box-shadow: 0 4px 12px rgba(99,102,241,0.2);
  transform: translateY(-1px);
}

table {
  font-size: 14px;
}

img {
  border: 0;
  max-width: 100%;
}

abbr {
  border-bottom: 0;
}

.abbr {
  color: var(--color-text-muted, #8a8a9a);
}

a {
  text-decoration: none;
  color: var(--color-primary, #213181);
  transition: color 0.2s;
}

a:hover {
  color: var(--color-primary-light, #4692BF);
}

.inputreadonly {
  background-color: var(--color-bg, #f4f6f9);
  border: 1px solid var(--color-border, #e2e6ee);
  color: var(--color-text-secondary, #5a5a6e);
}

.main {
  margin: 0 auto;
  font-size: 14px;
  width: 100%;
  max-width: 700px;
}

.leftpanel {
  padding: 20px 24px;
  margin-bottom: 16px;
  width: 100%;
  overflow: hidden;
  text-align: justify;
  border: 1px solid var(--color-border, #e2e6ee);
  background-color: var(--color-bg-card, #16152a);
  border-radius: var(--radius-md, 10px);
}

.leftpaneltitleimg {
  float: right;
  margin-left: 8px;
}

.searchtopform {
  text-align: center !important;
}

.searchtopform form {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

.XFormularDiv {
  text-align: center !important;
  margin-bottom: 8px;
}

.searchtable {
  width: 100%;
  text-align: center;
}

.searchtable td {
  text-align: center;
}

.bodymain {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  padding-bottom: 8px;
  overflow: hidden;
}

#topbanner {
  height: auto;
  display: none;
}

#topbannerimg {
  display: none;
}

.toplink {
  width: 300px;
  height: 78px;
  display: block;
}

#menu {
  width: auto;
  float: none;
  background-color: transparent;
  line-height: 1;
  margin: 0;
  padding: 0;
  border: none;
  display: flex;
  gap: 4px;
}

#menu a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 8px 14px;
  color: var(--color-text-secondary, #5a5a6e);
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  border-radius: var(--radius-sm, 6px);
  transition: all 0.2s;
}

#menu a:hover {
  color: var(--color-primary, #213181);
  background-color: var(--color-bg, #f4f6f9);
}

#menu img {
  margin-left: 0;
}

.xmenuboxlev0 {
  margin-top: 0;
  padding-top: 0;
}

form {
  margin-bottom: 0;
  margin-top: 0;
}

#outro {
  width: 100%;
  font-size: 12px;
  text-align: center;
  margin: 0;
  padding: 16px;
}

#outro a {
  color: var(--color-text-muted, #8a8a9a);
}

#outro a:hover {
  color: var(--color-primary-light, #4692BF);
}

.leftpaneltitle {
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid var(--color-border, #e2e6ee);
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 12px;
  margin-bottom: 16px;
  text-align: left;
  color: var(--color-primary, #213181);
}

.XRowPages {
  text-align: right !important;
}

.xtableover {
  background-color: var(--color-bg, #f4f6f9);
}

.xtabledown {
  background-color: var(--color-bg-card, #16152a);
}

.theme {
  width: 100%;
  padding: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  text-align: justify;
  border: 1px solid var(--color-border, #e2e6ee);
  border-radius: var(--radius-md, 10px);
  transition: all 0.2s;
}

.theme:hover {
  border-color: var(--color-primary-light, #4692BF);
  box-shadow: 0 4px 16px rgba(99,102,241,0.12);
}

.theme img {
  float: left;
  margin-right: 12px;
  border-radius: var(--radius-sm, 6px);
}

.client {
  width: 250px;
  height: auto;
  min-height: 180px;
  padding: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  margin-right: 20px;
  text-align: center;
  float: left;
  border: 1px solid var(--color-border, #e2e6ee);
  background-color: var(--color-bg-card, #16152a);
  border-radius: var(--radius-md, 10px);
  transition: all 0.2s;
}

.client:hover {
  border-color: var(--color-primary-light, #4692BF);
  box-shadow: 0 4px 16px rgba(99,102,241,0.12);
  transform: translateY(-2px);
}

.client img {
  margin-right: 0;
  border-radius: var(--radius-sm, 6px);
}

.clientname {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
  color: var(--color-primary, #213181);
}

.partnerspanel {
  text-align: center;
}

.partnerspanel img {
  border: 1px solid var(--color-border, #e2e6ee);
  vertical-align: middle;
  margin: 4px;
  border-radius: var(--radius-sm, 6px);
  padding: 4px;
}

.news .leftpanel {
  border: 0 !important;
}

#languages {
  float: right;
  text-align: center;
  clear: both;
  width: 140px;
  margin-top: 10px;
  display: none;
}

#languages a {
  display: inline;
}
