/*
Theme Name: Govenergy Theme
Theme URI:
Author: Cp Dev Team
Author URI:
Description: Govenergy Theme
Version: 1.0
Text Domain: govenergy
*/

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/


/* CSS RESET */

main {
  flex: 1;
}

html,
body {
  border: none;
  margin: 0;
  padding: 0;
  background-color: #F7F7F7;
}

html,
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Manrope", sans-serif !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
big,
cite,
code,
em,
font,
img,
small,
strike,
sub,
sup,
li,
ol,
ul,
fieldset,
form,
label,
legend,
button,
table,
caption,
tr,
th,
td {
  border: none;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  text-align: inherit;
}

a {
  text-decoration: none !important;
}

blockquote::before,
blockquote::after {
  content: "";
}

body {
  overflow-x: hidden;
}

ul {
  list-style: none;
}

.content-wrapper {
  
  display: flex;
  flex-direction: column;
  flex: 1;
}

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

.background-none {
  background: none !important;
}

.flex-center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.flex-around {
  display: flex;
  display: -webkit-flex;
  justify-content: space-around;
  -webkit-justify-content: space-around;
  align-items: center;
  -webkit-align-items: center;
}

.justify-end {
  justify-content: flex-end !important;
  -webkit-justify-content: flex-end !important;
}

.flex-between {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: center;
  -webkit-align-items: center;
}

.flex-3 {
  flex: 3;
}

.flex-2 {
  flex: 2;
}

.block {
  display: block;
}

.mb-10 {
  margin-bottom: 10px;
}

::-webkit-scrollbar {
  -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
  width: 12px;
}

::-webkit-scrollbar:horizontal {
  height: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  border: 2px solid #ffffff;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #ffffff;
}

/*============================*/
/*========== HEADER ==========*/
/*============================*/

#header {
  box-shadow: 0px 10px 40px #00000029;
  border-radius: 0;
  z-index: 99999;
  background-color: #1B0F70;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.header-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem;
  gap: 24px;
}

.header-wrapper > div:first-child {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-home-link {
  color: #4d7cbf;
  font-size: 37px;
  line-height: 1.1;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}

.header-home-link img {
  width: 229px;
  max-width: 100%;
  height: auto;
  display: block;
}

.header-mid-img {
  height: 52px;
  width: auto;
  margin-left: 10px;
  object-fit: contain;
}

#header-menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  min-width: 0;
}

.header-nav {
  font-weight: lighter;
}

#header-menu ul {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  padding: 15px 0;
  margin: 0;
  font-size: 18px;
  flex-wrap: nowrap;
}

#header-menu ul li {
  margin: 0 20px;
}

#header-menu ul li a {
  white-space: nowrap;
}

#mobile-header-menu {
  display: none;
  text-align: center;
}

#mobile-header-menu li {
  padding: 5px 0;
}

/* CTA button */
#header-menu ul li.header-cta > a {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 10px;
  background: #ff7a00;
  color: #fff !important;
  font-weight: 600;
  text-decoration: none !important;
  line-height: 1;
}

/* CTA hover */
#header-menu ul li.header-cta > a:hover {
  filter: brightness(1.05);
}

/* Burger styles - kept in case you use them later */
.toggle-menu {
  color: var(--main-color);
  font-size: 18px;
  margin-right: 10px;
  font-weight: lighter;
}

.responsive-menu {
  display: none;
  cursor: pointer;
  margin: 0 auto;
  padding: 5px;
}

.bar1,
.bar2,
.bar3 {
  width: 35px;
  height: 5px;
  background-color: var(--main-color);
  margin: 6px 0;
  transition: 0.4s;
}

.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}


/*======================================*/
/*====== LARGE LAPTOP / SMALL PC ======*/
/*======================================*/

@media (max-width: 1280px) {
  .header-wrapper {
    max-width: 1180px;
    padding: 0.75rem 24px;
    gap: 18px;
  }

  .header-home-link img {
    width: 210px;
  }

  .header-mid-img {
    height: 45px;
    margin-left: 6px;
  }

  #header-menu ul {
    font-size: 17px;
  }

  #header-menu ul li {
    margin: 0 14px;
  }

  #header-menu ul li.header-cta > a {
    padding: 10px 16px;
  }
}


/*============================*/
/*========== LAPTOP ==========*/
/*============================*/

@media (max-width: 1100px) {
  .header-wrapper {
    max-width: 100%;
    padding: 0.7rem 20px;
    gap: 16px;
  }

  .header-home-link img {
    width: 190px;
  }

  .header-mid-img {
    height: 38px;
    max-width: 210px;
  }

  #header-menu-wrapper {
    gap: 12px;
  }

  #header-menu ul {
    font-size: 15px;
  }

  #header-menu ul li {
    margin: 0 9px;
  }

  #header-menu ul li.header-cta > a {
    padding: 9px 14px;
    border-radius: 9px;
    font-size: 15px;
  }
}


/*============================*/
/*========== TABLET ==========*/
/*============================*/

@media (max-width: 900px) {
  .header-wrapper {
    padding: 0.7rem 18px;
    gap: 12px;
  }

  .header-wrapper > div:first-child {
    gap: 10px;
  }

  .header-home-link img {
    width: 175px;
  }

  .header-mid-img {
    height: 34px;
    max-width: 175px;
    margin-left: 0;
  }

  #header-menu ul {
    font-size: 14px;
    padding: 10px 0;
  }

  #header-menu ul li {
    margin: 0 6px;
  }

  #header-menu ul li.header-cta > a {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
  }
}


/*================================*/
/*========== SMALL TABLET ========*/
/*================================*/

@media (max-width: 768px) {
  #header {
    overflow: visible;
  }

  .header-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 14px 18px 16px;
    gap: 16px;
  }

  .header-wrapper > div:first-child {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .header-home-link img {
    width: 220px;
    max-width: 46vw;
    height: auto;
  }

  .header-mid-img {
    height: 48px;
    max-width: 46vw;
    width: auto;
    margin-left: 0;
    object-fit: contain;
  }

  #header-menu-wrapper {
    display: flex !important;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  #header-menu {
    display: block !important;
    width: 100%;
  }

  #header-menu .menu,
  #header-menu ul {
    display: flex !important;
    width: 100%;
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: 15px;
  }

  #header-menu ul li {
    display: inline-flex !important;
    margin: 0;
  }

  #header-menu ul li a {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-size: 15px;
  }

  #header-menu ul li.header-cta > a {
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 15px;
  }

  #mobile-header-menu,
  .responsive-menu {
    display: none !important;
  }
}


/*============================*/
/*========== MOBILE ==========*/
/*============================*/

@media (max-width: 480px) {
  .header-wrapper {
    padding: 13px 10px 15px;
    gap: 14px;
  }

  .header-wrapper > div:first-child {
    gap: 8px;
  }

  .header-home-link img {
    width: 190px;
    max-width: 48vw;
  }

  .header-mid-img {
    height: 38px;
    max-width: 46vw;
  }

  #header-menu .menu,
  #header-menu ul {
    gap: 9px 12px;
    font-size: 14px;
  }

  #header-menu ul li a {
    font-size: 14px;
  }

  #header-menu ul li.header-cta > a {
    padding: 8px 14px;
    font-size: 14px;
  }
}


/*================================*/
/*========== SMALL MOBILE ========*/
/*================================*/

@media (max-width: 390px) {
  .header-wrapper {
    padding: 12px 10px 14px;
    gap: 12px;
  }

  .header-wrapper > div:first-child {
    gap: 8px;
  }

  .header-home-link img {
    width: 170px;
    max-width: 47vw;
  }

  .header-mid-img {
    height: 32px;
    max-width: 46vw;
  }

  #header-menu .menu,
  #header-menu ul {
    gap: 8px 10px;
    font-size: 13px;
  }

  #header-menu ul li a {
    font-size: 13px;
  }

  #header-menu ul li.header-cta > a {
    padding: 7px 12px;
    font-size: 13px;
  }
}


/*=================================*/
/*========== VERY SMALL ==========*/
/*=================================*/

@media (max-width: 340px) {
  .header-wrapper {
    padding: 11px 8px 13px;
    gap: 10px;
  }

  .header-wrapper > div:first-child {
    gap: 6px;
  }

  .header-home-link img {
    width: 155px;
    max-width: 47vw;
  }

  .header-mid-img {
    height: 28px;
    max-width: 45vw;
  }

  #header-menu .menu,
  #header-menu ul {
    font-size: 12px;
    gap: 7px 8px;
  }

  #header-menu ul li a {
    font-size: 12px;
  }

  #header-menu ul li.header-cta > a {
    padding: 7px 10px;
    font-size: 12px;
  }
}





/*============================*/
/*=========== MAIN ===========*/
/*============================*/

.energy-record {
  padding: 0;
  position: relative;
  overflow: hidden;
  background-color: #F7F7F7;
}

.energy-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 16px;
  padding-left: 137px;
  padding-right: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.energy-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 5;
}

.energy-title {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.2;
  color: #0D222D;
  margin: 0;
  display: block;
  max-width: 534px;
}

.energy-title .energy-line1,
.energy-title .energy-line2 {
  display: block;
  white-space: nowrap;
  word-break: keep-all;
}

.energy-underline-img {
  width: 318.5px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 0.35em;
  margin-left: 0;
}

.energy-media {
  justify-self: end;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.energy-media img {
  width: var(--energy-img-width, 928.71px);
  height: var(--energy-img-height, 695.27px);
  object-fit: cover;
  display: block;
  transform: translate(-90px, -40px);
  position: relative;
  z-index: 1;
  transition: width 0.3s ease, height 0.3s ease;
  left: 169px;
}

.energy-media::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 73%;
  width: 955px;
  height: 435px;
  border: 4px solid #ffffff;
  transform: translate(-50%, -50%) rotate(-11deg) skewX(-10deg);
  z-index: 2;
  pointer-events: none;
}


/*============================*/
/*======= LARGE TABLET =======*/
/*============================*/

@media (max-width: 1200px) {
  .energy-grid {
    padding-left: 100px;
    padding-right: 0;
  }

  .energy-media img {
    width: 820px;
    height: auto;
    max-width: none;
    transform: translate(-70px, -30px);
    left: 130px;
  }

  .energy-media::after {
    width: 820px;
    height: 380px;
    left: 73%;
  }
}


/*============================*/
/*========== TABLET ==========*/
/*============================*/

@media (max-width: 1024px) {
  .energy-grid {
    grid-template-columns: 0.9fr 1.1fr;
    padding-left: 137px;
    padding-right: 0;
    gap: 14px;
  }

  .energy-copy {
    align-items: flex-start;
    text-align: left;
  }

  .energy-title {
    font-size: clamp(28px, 3.4vw, 38px);
  }

  .energy-media {
    justify-self: end;
    overflow: visible;
  }

  .energy-media img {
    width: 720px;
    max-width: none;
    height: auto;
    transform: translate(-20px, -20px);
    left: 60px;
  }

  .energy-media::after {
    width: 720px;
    height: 335px;
    left: 72%;
    top: 41%;
  }
}


/*================================*/
/*========== SMALL TABLET ========*/
/*================================*/

@media (max-width: 720px) {
  .energy-grid {
    grid-template-columns: 1fr 1fr !important;
    align-items: center !important;
    gap: 14px !important;
    padding-left: 137px !important;
    padding-right: 0 !important;
    max-width: 1400px !important;
    min-height: 520px !important;
    margin: 0 auto !important;
  }

  .energy-copy {
    align-items: flex-start !important;
    text-align: left !important;
    position: relative !important;
    z-index: 5 !important;
  }

  .energy-title {
    font-size: clamp(28px, 3.4vw, 38px) !important;
    line-height: 1.2 !important;
    max-width: 534px !important;
    margin: 0 !important;
  }

  .energy-title .energy-line1,
  .energy-title .energy-line2 {
    white-space: nowrap !important;
  }

  .energy-underline-img {
    width: 318.5px !important;
    max-width: 100% !important;
    height: auto !important;
    margin-top: 0.35em !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .energy-media {
    justify-self: end !important;
    position: relative !important;
    overflow: visible !important;
    width: auto !important;
    z-index: 1 !important;
  }

  .energy-media img {
    width: 680px !important;
    max-width: none !important;
    height: 35rem !important;
    object-fit: cover !important;
    display: block !important;
    transform: translate(-20px, -20px) !important;
    left: 60px !important;
    position: relative !important;
    z-index: 1 !important;
  }

  .energy-media::after {
    content: "" !important;
    position: absolute !important;
    top: 40% !important;
    left: 73% !important;
    width: 700px !important;
    height: 320px !important;
    border: 4px solid #ffffff !important;
    transform: translate(-50%, -50%) rotate(-11deg) skewX(-10deg) !important;
    z-index: 2 !important;
    pointer-events: none !important;
  }
}


/*============================*/
/*========== MOBILE ==========*/
/*============================*/

@media (max-width: 600px) {
  .energy-grid {
    
    align-items: center !important;
    gap: 10px !important;
    padding-left: 80px !important;
    padding-right: 0 !important;
    min-height: 460px !important;
  }

  .energy-title {
    font-size: 26px !important;
    line-height: 1.2 !important;
    max-width: 300px !important;
  }

  .energy-title .energy-line1,
  .energy-title .energy-line2 {
    white-space: nowrap !important;
  }

  .energy-underline-img {
    width: 245px !important;
    max-width: 100% !important;
  }

  .energy-media img {
    width: 610px !important;
    max-width: none !important;
    height: auto !important;
    transform: translate(-20px, -10px) !important;
    left: 40px !important;
  }

  .energy-media::after {
    width: 620px !important;
    height: 285px !important;
    left: 73% !important;
    top: 40% !important;
  }
}

/*============================*/
/*======= SMALL MOBILE =======*/
/*============================*/

@media (max-width: 480px) {
  .energy-grid {
    align-items: center !important;
    gap: 10px !important;
    padding-left: 80px !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 460px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
  }

  .energy-copy {
    align-items: flex-start !important;
    text-align: left !important;
    position: relative !important;
    z-index: 5 !important;
  }

  .energy-title {
    font-size: 26px !important;
    line-height: 1.2 !important;
    max-width: 300px !important;
    margin: 0 !important;
  }

  .energy-title .energy-line1,
  .energy-title .energy-line2 {
    white-space: nowrap !important;
  }

  .energy-underline-img {
    width: 245px !important;
    max-width: 100% !important;
    margin-top: 6px !important;
  }

  .energy-media {
    justify-self: end !important;
    position: relative !important;
    width: auto !important;
    overflow: visible !important;
    z-index: 1 !important;
  }

  .energy-media img {
    width: 610px !important;
    max-width: none !important;
    height: 35rem !important;
    object-fit: cover !important;
    display: block !important;
    transform: translate(-20px, -10px) !important;
    left: 40px !important;
    position: relative !important;
    z-index: 1 !important;
  }

  .energy-media::after {
    content: "" !important;
    position: absolute !important;
    top: 40% !important;
    left: 73% !important;
    width: 620px !important;
    height: 285px !important;
    border: 4px solid #ffffff !important;
    transform: translate(-50%, -50%) rotate(-11deg) skewX(-10deg) !important;
    z-index: 2 !important;
    pointer-events: none !important;
  }
}


/*=================================*/
/*========== VERY SMALL ==========*/
/*=================================*/

@media (max-width: 360px) {
  .energy-grid {
    
    padding-left: 52px !important;
    padding-right: 0 !important;
    gap: 8px !important;
    min-height: 410px !important;
  }

  .energy-title {
    font-size: 23px !important;
    line-height: 1.18 !important;
    max-width: 250px !important;
  }

  .energy-title .energy-line1,
  .energy-title .energy-line2 {
    white-space: nowrap !important;
  }

  .energy-underline-img {
    width: 205px !important;
  }

  .energy-media img {
    width: 520px !important;
    max-width: none !important;
    height: 30rem !important;
    object-fit: cover !important;
    transform: translate(-16px, -6px) !important;
    left: 30px !important;
  }

  .energy-media::after {
    width: 530px !important;
    height: 245px !important;
    left: 73% !important;
    top: 40% !important;
  }
}



/*css gia ekselisksi katanaloseis kai filter */

.charts-filters {
  background: #f7fdff !important;
  border-radius: 16px;
  padding: 2rem;
}

.filters-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 16px;
  color: #0d222d;
}

.filter-label {
  display: block;
  font-size: 14px;
  color: #0d222d;
  margin: 12px 0 6px;
}

.filter-select-wrap {
  position: relative;
}

.filter-select {
  width: 100%;
  appearance: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: #0d222d;
  outline: none !important;
}

.filter-apply,
.charts-filters .filter-apply {
  background: #1b1070 !important;
  color: #fff;
  border: 0;
  border-radius: 36px !important;
  padding: 0;
  font-weight: 600;
  width: 139px;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  cursor: pointer;
}

.filter-apply:hover {
  filter: brightness(1.05);
}

@media (max-width: 992px) {
  .charts-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "filters"
      "chart";
    gap: 16px;
  }

  .charts-header .charts-heading {
    margin: 24px 0 0;
    text-align: center;
  }

  .charts-header .charts-underline-img {
    margin: -0.5em auto 24px;
    left: 0;
  }

  .charts-filters {
    margin-top: 0;
  }
}

.charts-underline-img {
  display: block;
  position: relative;
  margin: -0.6em auto 100px;
  height: auto;
  pointer-events: none;
  left: clamp(-220px, -18vw, -120px);
  top: 0.3em;
}

@media (max-width: 992px) {
  .charts-underline-img {
    margin: -0.5em auto 80px;
    left: 0;
  }
}

@media (max-width: 480px) {
  .charts-underline-img {
    width: 260px;
    max-width: 80%;
    margin: -0.35em auto 48px;
    left: 0;
    top: 0;
  }
}

#bills-searchbar {
  text-align: center;
  padding-top: 50px;
  margin-bottom: 78px;
}

#bills-searchbar .custom-search {
  width: 450px;
  height: 42px;
  margin: 0 auto;
  position: relative;
  display: block;
}

#bills-searchbar .custom-search label {
  display: block;
  margin: 0;
  width: 100%;
}

#bills-searchbar .custom-search input {
  width: 100%;
  height: 42px;
  border: 1px solid #E5E7EB;
  border-radius: 36px;
  padding: 0 120px 0 14px;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
}


#bills-searchbar .custom-search .custom-search-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  height: 34px;
  padding: 0 16px;
  border: 0;
  border-radius: 36px;
  background: #0D222D;
  color: #fff;
  font-weight: 600;
  line-height: 34px;
  cursor: pointer;
}


#bills-searchbar .custom-search input:focus {
  border-color: #cfd6dc;
}


@media (max-width: 600px) {
  #bills-searchbar .custom-search {
    width: 100%;
  }
}


#energy-bills-table_wrapper {
  max-width: 1183px;
  margin: 0 auto;
}


#energy-bills-table thead th {
  background: #1B1070 !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
  height: 98px;
  border-color: transparent;
  padding: 0 8px;
}


#energy-bills-table thead th:first-child {
  border-top-left-radius: 24px;
}

#energy-bills-table thead th:last-child {
  border-top-right-radius: 24px;
}


#energy-bills-table_wrapper .dt-length {
  color: #1B1070;
  font-weight: 500;
}

#energy-bills-table_wrapper .dt-length select {
  background: #fff;
  color: #1B1070;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 6px 10px;
  outline: none;
  font-weight: 500;
}


#energy-bills-table_wrapper .dt-paging .dt-paging-button.current,
#energy-bills-table_wrapper .dataTables_paginate .paginate_button.current {
  background: #F37240 !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 6px;
}


#energy-bills-table_wrapper .dt-paging .dt-paging-button,
#energy-bills-table_wrapper .dataTables_paginate .paginate_button {
  border: 0;
  color: #1B1070;
}






/*======== MAP ========= */

.map-search {
  background: #cfe1f49e 0% 0% no-repeat padding-box;
  color: white;
  height: 100%;
  width: 100%;
  max-width: 500px;
  overflow-y: auto;
  position: absolute;
  top: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(6px);
}


.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-right: 1rem;
}


.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}


.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked+.slider {
  background-color: var(--accent-color);
}

input:focus+.slider {
  box-shadow: 0 0 1px var(--accent-color);
}

input:checked+.slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}


.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.toggle-filters {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  position: sticky;
  top: 0;
}

.toggle-filters-text {
  font: normal normal normal 20px/19px Manrope;
}

.table-view .map-search {
  max-width: 100% !important;
  position: absolute;
  top: 15px;
  left: 30px;
  z-index: 2;
  transition: opacity 0.1s ease-in;
  -moz-transition: opacity 0.1s ease-in;
  -webkit-transition: opacity 0.1s ease-in;
  display: flex;
  flex-direction: column;
  -o-transition: opacity 0.1s ease-in;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

#search_form {
  display: flex;
  justify-content: space-evenly;
  padding: 2rem;
  padding-top: 6rem;
  gap: 20px;
}

.cluster {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: white;
}

.cluster img {
  width: 100%;
  height: 100%;
}

.map-view {
  flex-direction: column;
}

.table-view {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

#table-view-heading {
  display: none;
  font: normal normal 30px/19px Manrope;
  color: white;
  padding-bottom: 1.5rem;
}

option:disabled {
  display: none;
}

#column-one {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
}

.table-view #column-one {
  gap: 1.3rem;
}

.map-view #column-two {
  padding-top: 1rem;
}

.search-form-input {
  background: #ffffff 0% 0% no-repeat padding-box;
  padding: 10px;
  box-shadow: 0px 3px 6px #00000066;
  border: none;
  border-radius: 9px;
  width: 100%;
}

.search-form-input:focus {
  outline: none;
}

.form-input-wrapper-map-view {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.form-input-wrapper-map-view>label {
  font-size: 20px;
  font-weight: bold;
  color: #0e1f3b;
}

.form-input-wrapper-table-view {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.form-input-wrapper-table-view>label {
  text-align: left;
  padding-bottom: 1rem;
}

.position-initial {
  position: initial !important;
}

.search-item-content {
  height: 85px;
  overflow-y: scroll;
  margin: 10px 0;
}

.search_status_icon {
  width: 10px;
  margin: 0 5px;
}

.info {
  margin-left: 5px;
}

.button-wrapper {
  text-align: right;
  /*display: flex;*/
  /*display: -webkit-flex;*/
  /*justify-content: center;*/
  /*-webkit-justify-content: center;*/
  /*align-items: center;*/
  /*-webkit-align-items: center;*/
  /*flex-wrap: wrap;*/
  /*-webkit-flex-wrap: wrap;*/
  /*max-width: 100%;*/
  /*padding: 0 100px;*/
  background-image: url("images/patterns/dotted_line.svg");
  background-size: 20px;
  background-position: bottom;
  background-repeat: repeat no-repeat;
}

.inner-wrapper {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  flex-direction: column;
}

#map {
  width: 100vw;
  height: 860px;
  background-color: #e4e4e4;
}

#map .recent-project {
  border: none;
}

.marker-explanation {
  display: flex;
  display: -webkit-flex;
  justify-content: space-around;
  -webkit-justify-content: space-around;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding: 15px;
  max-width: 1140px;
  margin: 0 auto;
}

.marker {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}

.marker img {
  width: 20px;
  margin-right: 10px;
}

.leaflet-popup-content {
  margin: 0 !important;
}

.leaflet-popup-content p {
  margin: 0 !important;
}

.marker-cluster {
  font-size: 1.3rem;
  border-radius: 100%;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.marker-cluster-count {
  color: #fff;
}

/* =========== charts ======= */

.front-page-charts {
  max-width: 1400px;
  margin: 100px auto;
  padding: 0 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.front-page-charts-first-row {
  display: flex;
  gap: 2rem;
}

.front-page-charts-first-row>* {
  flex-grow: 1;
}

.single-project-fields {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 80%;
  max-width: 1400px;
  margin: 130px auto;
}

.diagram-container {
  width: 100%;
}

#energy-bills-table {
  border-radius: 40px;
  box-shadow: 0px 10px 40px #0000000d;
  border-bottom: none !important;
  text-align: center;
  font-weight: 600;
}

#energy-bills-table tbody tr {
  cursor: pointer;
}

#energy-bills-table tbody tr:hover {
  background-color: #f0f0f0;
}

#energy-bills-table thead tr th:first-of-type {
  border-radius: 40px 0 0 0;
}

#energy-bills-table thead tr th:last-of-type, #energy-bills-table thead tr th:has(+ th.dtr-hidden):not(.dtr-hidden) {
  border-radius: 0 40px 0 0;
}

#energy-bills-table thead tr th:first-of-type:has(+ th.dtr-hidden):not(.dtr-hidden) {
  border-radius: 40px 40px 0 0;
  text-align: start;
}

#energy-bills-table tbody td:first-of-type:has(+ td.dtr-hidden):not(.dtr-hidden) {
  text-align: start;
}

#energy-bills-table thead tr th {
  padding: 20px 18px;
}

#energy-bills-table tbody tr td {
  padding: 15px 10px;
}

#energy-bills-table tbody tr:not(:last-of-type) td {
  border-bottom: 1px solid #0e1f3b;
}

#energy-bills-table tbody tr:last-of-type td:not(:last-of-type) {
  border-right: 1px solid #0e1f3b;
}

#energy-bills-table tbody tr:not(:last-of-type) td:not(:last-of-type) {
  border-right: 1px solid #0e1f3b;
}

#energy-bills-table tbody tr:last-of-type td:first-of-type {
  border-radius: 0 0 0 40px;
}

#energy-bills-table tbody tr:last-of-type td:last-of-type {
  border-radius: 0 0 40px 0;
}

div.dt-container.dt-empty-footer #energy-bills-table tbody>tr:last-child>* {
  border-bottom: none;
}

#energy-bills-table_paginate {
  width: 100%;
  text-align: center;
  margin-top: 60px;
}

.diagram-header,
.fields-header,
#energy-bills-table thead {
  background-color: #4d7cbf;
  padding: 20px 0;
  text-align: center;
  color: #fff;
  border-radius: 40px 40px 0 0;
  font-weight: bold;
}

#energy-bills-table_next,
#energy-bills-table_previous {
  color: #284c7e !important;
  margin: 0 1em;
}

#energy-bills-table_next:hover,
#energy-bills-table_previous:hover {
  background: transparent;
  border: transparent;
}

#energy-bills-table_paginate .paginate_button {
  color: #284c7e !important;
  font-weight: bold;
  padding: 0.2em 0.4em;
  border: unset;
}

#energy-bills-table_paginate .paginate_button:hover {
  background: none;
}

#energy-bills-table_paginate .paginate_button.current {
  border-radius: 4px !important;
  background: #cfe1f4 !important;
}

#energy-bills-table_length {
  display: none;
}

.dataTables_filter {
  margin: 1rem 0;
}

.dataTables_filter input {
  outline: none !important;
}

div.dataTables_wrapper .dataTables_info {
  padding-top: 2rem;
}

.diagram-content {
  background-color: #fff;
  box-shadow: 0px 10px 40px #0000000d;
  border-radius: 0 0 40px 40px;
  padding: 30px;
}

.diagram-info-button {
  background: none;
  border: none;
  position: relative;
}

.diagram-info-button:hover {
  cursor: pointer;
}

.types-explanation {
  display: none;
  background-color: #fff;
  z-index: 9999;
  position: absolute;
  text-align: left;
  width: max-content;
  max-width: 60ch;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0px 10px 40px #0000000d;
}

.fields-content {
  background-color: #fff;
  box-shadow: 0px 10px 40px #0000000d;
  border-radius: 0 0 40px 40px;
}

.fields-content>table {
  border-collapse: collapse;
  width: 100%;
}

.fields-content>table td {
  padding: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  width: 50%;
}

.fields-content>table tr {
  border-top: 1px solid #0e1f3b86;
  border-bottom: 1px solid #0e1f3b86;
}

.fields-content>table tr:last-of-type {
  border-bottom: none;
}

.fields-content>table tr td:first-of-type {
  border-right: 1px solid #0e1f3b86;
}

.rendered-diagram {
  height: 100%;
  width: 100%;
}

#show-more-btn {
  background-color: #284c7e;
  border: none;
  color: #fff;
  border-radius: 8px;
  padding: 10px 20px;
  margin: 0 auto;
}

#show-more-btn:hover {
  cursor: pointer;
}

@media screen and (max-width: 820px) {
  .front-page-charts-first-row {
    flex-direction: column;
  }
}

/* =========== RECENT ======= */

.recent-project-info-window {
  border-radius: 9px;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  width: 300px;
  max-width: 300px;
}

.project-title {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.recent-project-info-window .project-title {
  text-align: left;
  font-size: 16px;
}

.project-info {
  background-color: white;
  color: #707070;
  font-size: 14px;
  text-align: left;
  position: relative;
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

/*=======FOOTER========= */

.footer {
  background-color: #1B0F70;
  padding: 30px 0;
  color: #fff;
}

.footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5rem;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logos>p {
  max-width: 45ch;
}

footer a,
footer a:active,
footer a:focus {
  color: #fff;
  font-weight: 400;
}

.cp-logo {
  height: 33px;
}

.cp>a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.terms {
  text-align: center;
  font-weight: lighter;
}

.menu-footer-menu-container {
  margin-bottom: 20px;
}

.cp-colored {
  color: #738BEC !important;
}


.footer-main-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.footer-main-logo {
  width: 417px;
  height: auto;
  max-width: 100%;
}


.cp-colored {
  color: #738BEC !important;
}


@media (max-width: 768px) {
  .footer-wrapper {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cp a {
    justify-content: center;
    text-align: center;
  }
}



.table-content {
  font-size: 14px !important;
}

.table-wrapper {
  display: none;
  margin-left: 40px;
  margin-right: 40px;
  min-height: 800px;

}

.table-view+.charts {
  display: none;
}

#table-heading {
  color: var(--main-lighter-color);
  font: normal normal bold 30px/19px Manrope;
  margin-bottom: 2rem;
}

.table-wrapper a {
  color: #000;
  word-break: break-all;
}

.table-wrapper .recent-project {
  margin: 20px auto;
  background-color: #fff;
}

.table-pagination {
  margin: 60px 0;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.table-page {
  margin: 0 7px;
  cursor: pointer;
  position: relative;
  width: 20px;
  height: 20px;
  padding: 3px;
}

.table-page:not(:last-child):after {
  content: "";
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background-color: #000;
  top: 12px;
  position: absolute;
  left: 30px;
}

.active {
  background-color: #1b82b5;
  color: #fff;
  border-radius: 50%;
}

.category.table-title {
  flex-direction: column;
}

.table-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  text-align: center;
  word-break: normal;
}

.table-title:first-child {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  text-align: left;
}

.table-project {
  padding: 10px 0 10px 10px;
  min-height: 50px;
  background-color: #fafafa;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.15s ease-in-out;
}

.table-project:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  position: relative;
  border-radius: 5px;
  padding: 20px 0 20px 10px;
  margin: -10px 0;
}

.table-project:nth-child(2n) {
  background-color: #2961b51e;
}

.table-details {
  background-color: #707070;
  padding: 10px 0 10px 10px;
  font-weight: lighter;
  color: white;
}

.table-data-hidden {
  display: flex !important;
  display: -webkit-flex !important;
}

.small-table-project {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  text-align: center;
  width: 100%;
}

span.small-table-project.td-data[data-type="category"] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.table-data-wrapper {
  display: none;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}

.td-title {
  font-weight: lighter;
  padding: 10px 0;
  font-size: 15px;
  color: #1b82b5;
}

.td-data {
  font-size: 15px;
  margin: 5px;
}

.print-page-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 12px 22px;
  background-color: #4d7cbf;
  color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 9px;
  font-size: 15px;
  height: 45px;
}

.print-page-btn i {
  margin-left: 5px;
}

.above-table {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin: 0 30px;
}

.feed-img {
  height: 30px;
}

.no-data-found {
  width: 500px;
  margin: 60px auto;
}

.project-more {
  display: none;
  margin: 10px auto;
  cursor: pointer;
  background-color: #1b82b5;
  color: #fff !important;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 3px;
}

/*------------ 404 ------------*/
.wrapper-404 {
  display: flex;
  justify-content: space-evenly;
}

.banner-404 {
  width: 100%;
  height: auto;
}

.error {
  margin: 4rem 0;
}

.text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  font-family: "Manrope", sans-serif;
  color: var(--main-color);
}

.text h1 {
  font-size: 10rem;
  font-weight: bold;
}

/*=========== MEDIA ========== */

@media screen and (max-width: 1150px) {
  .header-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

@media screen and (max-width: 900px) {
  #header-menu-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 550px) {
  .search-item-content {
    display: none;
    height: auto;
  }

  ::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: inherit;
  }

  /*----- info window  ------ */
  #map .recent-project {
    width: 240px;
    padding: 0;
    margin: 0;
  }

  #map .project-title {
    margin: 10px;
  }

  /*----- recent posts ------ */
  .recent-project {
    height: auto;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: center;
    -webkit-justify-content: center;
  }

  /* ----- table ----- */
  .table-data-wrapper {
    flex-direction: column;
    -webkit-flex-direction: column;
    align-items: center;
    -webkit-align-items: center;
    background-color: #fff;
  }

  .td-title {
    background-color: #fafafa;
    padding: 5px 0;
  }

  /* ---- single project ---- */
  #comment {
    width: 300px;
  }

  .project-information {
    width: 100%;
  }

  .single-project-info {
    justify-content: center;
    -webkit-justify-content: center;
    flex-direction: column;
    -webkit-flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 650px) {

  /* ------ footer ----- */
  .footer-wrapper {
    flex-direction: column;
    gap: 1rem;
  }

  .cp {
    margin: 20px 0;
  }

  .terms {
    order: 3;
  }
}

@media screen and (max-width: 720px) {

  /* ------ header ------ */
  .header-home-link {
    margin: 0 auto;
    flex-direction: column;
    -webkit-flex-direction: column;
  }

  .header-home-link h1 {
    text-align: center;
  }
}

@media screen and (max-width: 800px) {
  .table-wrapper {
    width: 100%;
    margin: 40px auto;
    min-height: auto;
  }

  .tp-title {
    font-size: 18px;
    padding: 10px 5px;
    background-color: #f2f2f2;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
  }

  .tp-title i {
    margin: 0 10px;
  }

  .table-details {
    display: none;
  }

  /* ----- map & search ----- */
  .inner-wrapper {
    display: block;
  }

  .search-opacity {
    opacity: 1;
  }

  #reset {
    margin: 0 auto;
    width: auto;
  }

  .button-wrapper {
    text-align: center;
    padding: 0 50px;
  }

  .show_in_table_btn {
    margin: 20px 0;
  }
}

@media screen and (max-width: 890px) and (min-width: 801px) {
  .table-wrapper {
    width: 800px;
    margin: 40px auto;
  }
}

@media screen and (max-width: 1200px) and (min-width: 891px) {
  .table-wrapper {
    width: 90%;
    margin: 40px auto;
  }
}

@media screen and (max-width: 1200px) {

  /* ----- map & search ----- */
  .table-view .inner-wrapper {
    display: block;
  }

  .table-view .map-search {
    position: initial;
    max-width: 100%;
  }

  .table-view .search-opacity {
    opacity: 1;
  }

  .table-view #reset {
    margin: 0 auto;
    width: auto;
  }

  .table-view .button-wrapper {
    text-align: center;
  }

  .table-view .show_in_table_btn {
    margin: 20px 0;
  }

  .table-view #search_form {
    max-width: 800px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 700px) {
  .responsive-menu {
    display: none;
    align-items: center;
    justify-content: center;
  }

  #mobile-header-menu {
    display: none;
  }

  #header-menu {
    display: none;
  }
}

/* Dimos Page Styling */
.dimos-wrapper {
  max-width: 820px;
  margin: 60px auto;
  padding: 0 20px;
  font-size: 20px;
  line-height: 1.8;
  color: #222;
   padding: 80px 20px 0;
}


.dimos-wrapper p {
  margin-bottom: 22px;
}


.dimos-wrapper strong {
  font-size: 22px;
  color: #1b1464;
 
}


.dimos-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
  color: #1b1464;
  font-weight: 600;
  
  padding-left: 12px;
}


.dimos-wrapper ul {
  margin-left: 20px;
}

.dimos-wrapper ul li {
  margin-bottom: 12px;
  font-size: 20px;
}

/*header*/

#header-menu li[id*="wpml-ls"],
#header-menu li[class*="wpml-ls"] {
  margin: 0 !important;
  padding: 0 !important;
}

#header-menu li[id*="wpml-ls"] > a,
#header-menu li[class*="wpml-ls"] > a {
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-flex !important;
  width: auto !important;
}

#header-menu li[id*="wpml-ls"] + li[id*="wpml-ls"],
#header-menu li[class*="wpml-ls"] + li[class*="wpml-ls"] {
  margin-left: 6px !important;
}

#header-menu li[id*="wpml-ls"] > a:hover,
#header-menu li[class*="wpml-ls"] > a:hover {
  color: #ffffff !important;
}

#header-menu li.wpml-ls-current-language > a {
  color: #ffffff !important;
  font-weight: 900 !important;
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
}
/* css gia add energy data page */
/* Page wrapper */
.energy-upload-page {
    background: #f3f3f3;
    padding: 0 0 80px;
}

/* Hero title area */
.energy-upload-hero {
    padding: 120px 20px 55px;
    text-align: center;
}

.energy-upload-hero__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.energy-upload-title {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 500;
    color: #0c2140;
    margin: 0;
    letter-spacing: -0.02em;
}

.energy-upload-underline {
    width: 210px;
    height: 8px;
    margin: 20px auto 0;
    background: #f57c38;
    border-radius: 20px;
    transform: rotate(-2deg);
}

/* Content section */
.energy-upload-section {
    padding: 30px 20px 0;
}

.energy-upload-container {
    max-width: 760px;
    margin: 0 auto;
}

/* Success message */
.energy-upload-success {
    background: #e8f7ee;
    color: #1e6b3a;
    border: 1px solid #bfe5cb;
    padding: 16px 20px;
    border-radius: 14px;
    margin-bottom: 24px;
    font-size: 16px;
}

/* Form card */
.energy-upload-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 42px;
    box-shadow: 0 10px 30px rgba(12, 33, 64, 0.08);
    margin-bottom: 60px;
}

/* ACF form spacing */
.energy-upload-card .acf-fields {
    border: 0;
}

.energy-upload-card .acf-field {
    padding: 0 0 24px;
    border-top: 0;
}

.energy-upload-card .acf-label label {
    font-size: 18px;
    font-weight: 600;
    color: #0c2140;
    margin-bottom: 10px;
}

/* Inputs */
.energy-upload-card input[type="text"],
.energy-upload-card input[type="date"],
.energy-upload-card input[type="email"],
.energy-upload-card input[type="number"],
.energy-upload-card input[type="password"],
.energy-upload-card select,
.energy-upload-card textarea,
.energy-upload-card .acf-input input,
.energy-upload-card .acf-input select,
.energy-upload-card .acf-input textarea {
    width: 100%;
    min-height: 56px;
    border: 1px solid #d9dfe7;
    border-radius: 14px;
    background: #fff;
    color: #0c2140;
    padding: 14px 16px;
    font-size: 16px;
    box-shadow: none;
    transition: all 0.2s ease;
}

.energy-upload-card input:focus,
.energy-upload-card select:focus,
.energy-upload-card textarea:focus,
.energy-upload-card .acf-input input:focus,
.energy-upload-card .acf-input select:focus,
.energy-upload-card .acf-input textarea:focus {
    outline: none;
    border-color: #2a1b8d;
    box-shadow: 0 0 0 3px rgba(42, 27, 141, 0.08);
}

/* File uploader area */
.energy-upload-card .acf-file-uploader,
.energy-upload-card .acf-file-uploader.has-value {
    border: 1px dashed #cfd7e2;
    border-radius: 16px;
    padding: 12px;
    background: #fafbfd;
}

/* ACF actions row */
.energy-upload-card .acf-form-submit {
    padding-top: 12px;
    margin-top: 4px;
}

/* Submit + upload buttons */
.energy-upload-submit,
.energy-upload-card .acf-button,
.energy-upload-card input[type="submit"],
.energy-upload-card .acf-file-uploader .button,
.energy-upload-card .acf-file-uploader .acf-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 145px;
    min-height: 48px;
    padding: 10px 22px;
    border: 0;
    border-radius: 999px;
    background: #2a1b8d;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.energy-upload-submit:hover,
.energy-upload-card .acf-button:hover,
.energy-upload-card input[type="submit"]:hover,
.energy-upload-card .acf-file-uploader .button:hover,
.energy-upload-card .acf-file-uploader .acf-button:hover {
    background: #1f146d;
    transform: translateY(-1px);
}

/* Date picker icon area fixes */
.energy-upload-card .acf-date-picker .acf-icon {
    top: 50%;
    transform: translateY(-50%);
    right: 14px;
}

/* Validation errors */
.energy-upload-card .acf-error-message {
    border-radius: 12px;
    margin-top: 8px;
}

/* Mobile */
@media (max-width: 767px) {
    .energy-upload-hero {
        padding: 80px 20px 35px;
    }

    .energy-upload-title {
        font-size: 34px;
    }

    .energy-upload-card {
        padding: 28px 20px;
        border-radius: 18px;
        margin-bottom: 40px;
    }

    .energy-upload-card .acf-label label {
        font-size: 16px;
    }

    .energy-upload-submit,
    .energy-upload-card .acf-button,
    .energy-upload-card input[type="submit"],
    .energy-upload-card .acf-file-uploader .button,
    .energy-upload-card .acf-file-uploader .acf-button {
        min-width: 130px;
        min-height: 44px;
        font-size: 15px;
        padding: 10px 18px;
    }
}