html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

h3 {
  text-align: center;
  font-size: 2rem;
  margin-top: 40px;
  color: #111;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #F9F9F9;
  color: #111111;
  line-height: 1.6;
}

.navbar {
  /*background-color: #d9d9d9;*/
  border-radius: 12px;
  margin: 1rem auto;
  width: calc(100% - 4rem);
}

a {
  color: #1e90ff;
  text-decoration: none;
}

a:hover, a:focus {
  text-decoration: underline;
  outline: none;
}

.upload-jogo-container h1 {
  text-align: center;
}

h1-gestao {
  text-align: center;
}

.back-link {
  max-width: 100%;
  height: auto;
  display: block;
}

.navbar {
  height: 100px;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 250px; 
  width: auto;
  display: block;
}

.categoria-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 20px;
}

.btn-adicionar-categoria {
  padding: 12px 24px;
  font-size: 15px;
  color: white;
  font-weight: bold;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  background-color: #007bff;
}

.categoria-jogo form {
  display: flex;
  justify-content: center;
}

.adicionar-categoria {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px; 
}

.categoria-jogo select {
  padding: 8px 12px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #fff;
  cursor: pointer;
  transition: border-color 0.3s;
}

.categoria-jogo select:hover {
  border-color: #007bff;
}

.categoria-jogo select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.categorias-checkbox label {
  margin-bottom: 8px;
  font-size: 0.95rem;
  cursor: pointer;
}

.categorias-checkbox input[type="checkbox"] {
  margin-right: 5px;
  transform: scale(1.2);
}

.linha-categoria {
  display: flex;
  align-items: center;
  gap: 10px;
}

.linha-categoria input[type="text"] {
  flex: 1;
  padding: 5px 8px;
  font-size: 0.95rem;
}

.btn-icon,
.modal-footer button,
.modal-footer button img {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s;
}

.btn-icon img,
.modal-footer button img {
  width: 36px;
  height: 36px;
}

.btn-icon:hover,
.modal-footer button img {
  transform: scale(1.1);
}

#canvas {
  display: none !important;
  position: absolute;
  width: 0;
  height: 0;
  visibility: hidden;
}

.btn-icon-registo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.btn-registo-img {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s;
}

.btn-registo-img img {
  width: 60px;
  height: 60px;
}

.btn-registo-img:hover {
  transform: scale(1.1);
}

.modal-content.text-center {
  text-align: center;
  justify-content: center;
  width: fit-content;
}

#recognizingMessage, #loadingModels {
    display: none;
    font-size: 1.2rem;
    color: #007bff;
}

#videoContainer {
  position: absolute;
  top: 0px; 
  left: 100px;
  width: 200px;
  height: 240px;
  z-index: 2;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid #464646;
}

.fundo-rosto {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  object-position: center;
  z-index: 1;
  pointer-events: none;
}

.camera-frame {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
  overflow: hidden;
}

.img-fundo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  z-index: 1;
}

.video-rosto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
  border-radius: 50%;
}

.registo-container {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 40px 30px;
  max-width: 600px;
  margin: 50px auto;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.opcoes-registo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  width: 80%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
}

.modal-content input[type="text"] {
  padding: 12px 14px;
  border: 1px solid #bbb;
  border-radius: 8px;
  font-size: 16px;
  background-color: #fafafa;
  transition: border-color 0.3s;
}

.fechar {
  color: #aaa;
  float: right;
  font-size: 24px;
  cursor: pointer;
}

.fechar:hover {
  color: #000;
}


.container-login {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.container-login .login,
.container-login .registo {
  flex: 1 1 45%;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  min-width: 280px;
}

.container-login::before {
  content: "";
  display: block;
  width: 2px;
  background-color: #ccc;
  margin: 0 20px;
  height: auto;
}

.login-section,
.registo {
  text-align: center;
}

.user-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.user-menu button {
  border: 2px solid #bbb;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  border-radius: 8px;
  border-radius: 4px;
  cursor: pointer;
}

.user-menu ul {
  position: absolute;
  right: 0;
  top: 100%;
  background-color: #eeeeee;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  border: 1px solid #bbb;
  display: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  min-width: 180px;
  z-index: 10;
}

.user-menu ul li {
  padding: 0.5rem 1rem;
}

.user-menu ul li a {
  display: block;
  color: #111;
  text-decoration: none;
}

.user-menu ul li a:hover,
.user-menu ul li a:focus {
  background-color: #dcdcdc;
  display: block;
}

.user-menu ul:not(.hidden) {
  display: block;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.user-profile:hover,
.user-profile:focus {
  background-color: #f2f2f2;
  outline: none;
}

.user-icon {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

.user-profile span {
  font-weight: bold;
  color: #111;
  font: 1.5em;
}

.main-content {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  max-width: none;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.intro {
  text-align: center;
  margin-bottom: 2rem;
}

.introRegisto {
  text-align: center;
}

.jogos-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1rem;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto; 
  box-sizing: border-box;
  text-align: center;
}

.jogo {
  background-color: #f0f0f0;
  padding: 1rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease-in-out;
  min-width: 250px;
  max-width: 100%;
  height: auto;
}

.autor-jogo {
  font-size: 0.85em;
  color: #444;
  font-style: italic;
  text-align: center;
}

.maispower-jogo {
  font-size: 0.85em;
  color: #444;
  font-style: italic;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 5px;
}

.img-jogo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    display: block;
}

.jogo h2 {
  margin: 0rem 0;
  word-break: break-word;
  text-align: center;
  max-width: 100%;
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0;
}

.btn-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin: 0 8px;
}


.btn-icon-play {
  display: inline-flex;
  width: auto;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin: 0 8px;
}

.btn-icon-voltar,
.btn-icon-confirmar button {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  box-sizing: border-box;
}

.btn-icon-confirmar img {
  width: 50px;
  height: 50px;
}

.btn-icon-voltar img {
  display: inline-block; 
  width: 50px;
}

.btn-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 5px;
}

.btn-sucess {
  margin: 20px auto;
  padding: 12px 24px;
  font-size: 15px;
  color: white;
  font-weight: bold;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  background-color: #28a745;
}

.btn-editar {
  margin: 20px auto;
  padding: 12px 24px;
  font-size: 15px;
  color: white;
  font-weight: bold;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  background-color: #007bff;
}

.btn-remover {
  margin: 20px auto;
  padding: 12px 24px;
  font-size: 15px;
  color: white;
  font-weight: bold;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  background-color: #ff4d4d;
}

.btn-copiar {
  background-color: none;
  border: none;
}

.jogo > form {
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

footer {
  background-color: #d9d9d9;
  flex-shrink: 0;
  color: #111;
  text-align: center;
  padding: 1rem;
  margin-top: auto;
}

.acoes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
  width: fit-content;
}

.btn-placeholder {
  width: 40px;
  height: 40px;
  display: inline-block;
}

.upload-container,
.login-container {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 40px 30px;
  max-width: 600px;
  margin: 50px auto;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.upload-container h1,
.login-container h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #333;
}

.upload-container form,
.login-container form {
  display: flex;
  flex-direction: column;
}

.upload-container label,
.login-container label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #444;
}

.upload-container input[type="text"],
.upload-container input[type="file"],
.upload-container input[type="submit"],
.upload-container input[type="email"],
.login-container input[type="text"],
.login-container input[type="password"],
.input[type="date"],
.input[type='text'] {
  width: 100%;
  box-sizing: border-box;
}

.upload-container input[type="text"],
.upload-container input[type="file"],
.upload-container input[type="email"],
.login-container input[type="text"],
.login-container input[type="password"] {
  padding: 12px 14px;
  border: 1px solid #bbb;
  border-radius: 8px;
  font-size: 16px;
  background-color: #fafafa;
  transition: border-color 0.3s;
}

.upload-container input[type="text"]:focus,
.upload-container input[type="file"]:focus,
.upload-container input[type="email"]:focus,
.login-container input[type="text"]:focus,
.login-container input[type="password"]:focus {
  border-color: #007bff;
  outline: none;
  background-color: #fff;
}

.upload-container input[type="submit"],
.login-container input[type="submit"] {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, transform 0.1s;
}

.upload-container input[type="submit"]:hover,
.login-container input[type="submit"]:hover {
  background-color: #0056b3;
  transform: translateY(-1px);
}

.upload-container img {
  max-width: 100px;
  border-radius: 10px;
  margin-top: 5px;
}

.info-utilizador-main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 900px;
    margin: 50px auto 0 auto;
    width: 100%;
    flex-wrap: wrap;
}

.info-utilizador-esquerda, 
.info-utilizador-direita {
    flex: 1 1 320px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
    padding: 38px 28px;
    min-width: 270px;
    max-width: 420px;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-utilizador-esquerda h2,
.info-utilizador-direita h2 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    text-align: center;
}

.info-utilizador-esquerda .info-row,
.info-utilizador-direita .info-row {
    margin: 14px 0;
    width: 100%;
    text-align: left;
    font-size: 1.13rem;
}

.info-label {
    font-weight: 600;
    margin-right: 6px;
    color: #444;
}

.info-value {
    color: #222;
}

.info-row li,
.modal-content ol {
  padding-left: 2em;
}

.info-row ul.info-value,
.modal-content ul.info-value {
  list-style-position: inside;
  padding-left: 0;
  margin: 0;
}

.btn-voltar-container {
  width: 100%;
  display: flex;
  justify-content: left;
  margin-top: 10px;
  margin-bottom: 20px;
}

.btn-voltar {
  background-color: #1e2b85;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-voltar img {
  width: 24px;
  height: 24px;
}

.gestao-utilizadores-container {
  padding: 0 30px;
  box-sizing: border-box;
}

.gestao-utilizadores-container h1 {
  text-align: center;
}

.tabela-utilizadores {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

.drop-zone {
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  color: #666;
  background-color: #f9f9f9;
  cursor: pointer;
  transition: border-color 0.3s, background-color 0.3s;
  position: relative;
}

.drop-zone.invalid {
  border-color: #007bff;
  background-color: #e6f0ff;
  color: #007bff;
}

textarea {
  width: 100%;
  max-width: 600px;
  min-height: 120px;
  padding: 12px 14px;
  font-size: 16px;
  font-family: "Segoe UI", sans-serif;
  color: #333;
  background-color: #fefefe;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.tipo-utilizador {
  width: 200px;
  padding: 10px 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px 16px;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.tipo-utilizador:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

.remove-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #ff4d4d;
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.remove-btn:hover {
  background: #cc0000;
}

.back-link {
  display: block;
  margin-top: 20px;
  text-align: center;
  color: #1e90ff;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

.tabela-utilizadores {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 16px;
  min-width: 600px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.tabela-utilizadores thead {
  background-color: #007bff;
  color: white;
}

.tabela-utilizadores th,
.tabela-utilizadores td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.tabela-utilizadores tr:hover {
  background-color: #f1f1f1;
}

.tabela-utilizadores td:last-child,
.tabela-utilizadores th:last-child {
  text-align: center;
}

#btnTopo {
  display: none;
  position: fixed;
  bottom: 55px;
  right: 50px;
  z-index: 9999;
  cursor: pointer;
}

#btnTopo img.btnTopo {
  width: 70px;
  height: 70px;
  padding: 5px;
  transition: transform 0.3s ease;
}

#btnTopo:hover img.btnTopo {
  transform: scale(1.1);
}

form#registoForm {
  background-color: #ffffff;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 12px;
  padding: 40px 30px;
  width: 90%;
  max-width: 700px;
  margin: 50px auto;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

form#registoForm label {
  font-weight: bold;
  margin-bottom: 4px;
  color: #333;
}

form#registoForm input[type="text"],
form#registoForm input[type="email"],
form#registoForm input[type="date"] {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  background-color: #fafafa;
  transition: border-color 0.3s ease;
}

form#registoForm input:focus {
  border-color: #007bff;
  outline: none;
  background-color: white;
}

.radio-group {
  margin-top: 10px;
  padding-top: 5px;
  border-top: 1px solid #eee;
}

.radio-group label {
  display: block;
  margin-bottom: 5px;
  color: #444;
}

.radio-group input[type="radio"] {
  margin-right: 8px;
  margin-left: 4px;
}

button[type="submit"] {
  color: white;
  font-weight: bold;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

#toggleVoice {
  display: block;
  margin: 20px auto;
  padding: 12px 24px;
  font-size: 15px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#toggleVoice:hover {
  background-color: #0056b3;
}

.progress-container {
  width: 100%;
  max-width: 600px;
  margin: 10px auto;
  height: 8px;
  background-color: #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background-color: #007bff;
  transition: width 0.3s ease;
}

#status {
  text-align: center;
  margin-top: 15px;
  font-size: 1.1rem;
  color: #333;
}

.fullscreen-iframe {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  border: none;
  z-index: 0;
}

.botao-voltar-fixo {
  position: fixed;
  bottom: 15px;
  left: 5%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  z-index: 9999;
  cursor: pointer;
}

.botao-voltar-fixo img {
  width: 50px;
  height: 50px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(50, 50, 50, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.aviso-content {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.aviso-content h2 {
  margin-bottom: 1rem;
}

.aviso-content label {
  display: block;
  margin: 10px 0;
  text-align: left;
}

#confirmarAviso {
  margin-top: 20px;
  padding: 12px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

#confirmarAviso:hover {
  background-color: #0056b3;
}

.toggle-explicacao {
  background: none;
  border: none;
  color: #007bff;
  font-size: 1rem;
  margin-left: 8px;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
  vertical-align: middle;
}

.toggle-explicacao:hover {
  color: #0056b3;
}

.explicacao {
  background-color: #f0f0f0;
  padding: 10px 14px;
  margin-top: 5px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
}

.img-aviso {
    width: 40px;
    height: 40px;
    vertical-align: middle;
    cursor: pointer;
}

.descricao-sobre p {
    text-align: justify;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    margin: 0 15px;
    text-decoration: none;
    color: #000000;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

.power-container {
  display: flex; 
  align-items: center; 
  gap: 10px;
}

.img-power {
  max-width: 100%;
  width: 50px;
  margin: 5px 0;
  transition: transform 0.3s ease;
  vertical-align: middle; 
}

.img-power:hover {
  transform: scale(1.05);
}

.power-container p {
  margin: 0;
  font-size: 1rem;
  color: #333;
}

.power-container a {
  color: #0056b3;
  text-decoration: underline;
}

.power-container a:hover {
  color: #003580;
}