a {
  color: #ffb74d !important;
  text-shadow: none;
  text-transform: none !important;
  text-decoration: none !important;
}

[v-cloak] {
  display: none;
}

.v-btn {
  text-transform: capitalize !important;
}

#modal-services p {
  text-align: justify;
}

#modal-services li {
  font-size: 85%;
}

#modal-services strong {
  color: rgb(0, 255, 255);
  font-weight: bold;
}

#modal-services h2 {
  position: relative;
  margin: 30px auto;
  width: 100%;
  padding: 30px;
  text-align: center;
  font-size: 24px;
  text-transform: capitalize !important;

  &::before {
    content: "";
    animation: clippath 3s infinite linear;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid rgba(0, 255, 255, 0.4);
    transition: all .5s;
  }
}

.wide-logo {
  font-family: 'Junicode';
  font-weight: bold;
  text-shadow: 0px 2px 2px rgba(0, 255, 255, 0.4);
  letter-spacing: 2px;
  font-size: 28px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.wide-logo b {
  font-weight: 900;
  color: rgba(0, 255, 255, 1);
}

.wide-logo svg {
  max-height: 35px;
  max-width: 35px;
  margin-right: 10px;
}

.wide-logo path {
  fill: rgba(0, 255, 255, 1);
  stroke: rgba(0, 255, 255, 1);
}

@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}

.conic {
  position: relative;
  z-index: 0;
  width: 400px;
  height: 300px;
  margin: 20px;
  border-radius: 10px;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    z-index: -2;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    /*background-color: #1a232a*/
    ;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: conic-gradient(transparent, rgba(168, 239, 255, 1), transparent 30%);
    animation: rotate 4s linear infinite;
  }

  &::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 6px;
    top: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    /*background: #000*/
    ;
    border-radius: 5px;
  }
}

.conic-me::after {
  animation: opacityChange 5s infinite linear;
}

@keyframes opacityChange {
  50% {
    opacity: .5;
  }

  100% {
    opacity: 1;
  }
}

@keyframes clippath {

  0%,
  100% {
    clip-path: inset(0 0 95% 0);
  }

  25% {
    clip-path: inset(0 95% 0 0);
  }

  50% {
    clip-path: inset(95% 0 0 0);
  }

  75% {
    clip-path: inset(0 0 0 95%);
  }
}

.welcome {
  font-family: 'Junicode';
  font-weight: bold;
  font-style: italic;
  font-size: 18px;
  padding: 14px 10px;
  text-shadow: 0px 2px 2px rgba(0, 255, 255, 0.4);
}

.material-textfield {
  position: relative;
  margin-bottom: 15px;
}

.material-textfield label {
  position: absolute;
  font-size: var(--v-btn-size);
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  padding: 0 0.3rem;
  margin: 0 0.5rem;
  transition: 0.1s ease-out;
  transform-origin: left top;
  pointer-events: none;
}

.material-textfield input {
  font-size: 1rem;
  outline: none;
  background: rgb(var(--v-theme-surface));
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
  box-shadow: 0 2px 1px -1px var(--v-shadow-key-umbra-opacity, #0003), 0 1px 1px 0 var(--v-shadow-key-penumbra-opacity, #00000024), 0 1px 3px 0 var(--v-shadow-key-ambient-opacity, #0000001f);

  border-radius: 5px;
  padding: 1rem 0.7rem;

  transition: 0.1s ease-out;
}

.material-textfield input:focus {
  /*border-color: #6200ee;*/
}

.material-textfield input:focus+label {
  color: rgba(var(--v-theme-on-surface), calc(var(--v-high-emphasis-opacity) - 50%));
  top: 0;
  transform: translateY(-50%) scale(0.9) !important;
}

.material-textfield input:not(:placeholder-shown)+label {
  top: 0;
  transform: translateY(-50%) scale(0.9) !important;
}

.material-textfield input:not(:focus)::placeholder {
  opacity: 0;
}


#mnu_user {
  min-width: 200px;
  width: 100%;
  border-radius: 5px;
  padding: 15px;
  box-shadow: 0 8px 10px -5px var(--v-shadow-key-umbra-opacity, #0003), 0 16px 24px 2px var(--v-shadow-key-penumbra-opacity, #00000024), 0 6px 30px 5px var(--v-shadow-key-ambient-opacity, #0000001f);
}

#player {
  display: none;
}

.clickable-gif {
  cursor: pointer;
  position: relative;
  /* Needed for the overlay */
}

.clickable-gif .overlay-content {
  opacity: 0.7;
  transition: opacity 0.3s ease-in-out;
}

.clickable-gif:hover .overlay-content {
  opacity: 1;
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}

.alert {
  text-align: center;
  padding: 10px;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  margin-top: 5px;
  margin-bottom: 20px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.alert.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert.alert-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

.alert.alert-warning {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}

#modal-services .v-carousel {
  display: none !important;
}

.message-bubble {
  max-width: 85%;
  word-wrap: break-word;
}

.user-bubble {
  background-color: rgb(var(--v-theme-primary));
  color: rgb(var(--v-theme-on-primary));
}

.assistant-bubble {
  background-color: rgb(var(--v-theme-surface-variant));
  color: rgb(var(--v-theme-on-surface-variant));
}

.assistant-bubble pre {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 12px;
  border-radius: 8px;
  overflow-x: auto;
}

.assistant-bubble code {
  font-family: 'Courier New', Courier, monospace;
}

.grecaptcha-badge {
  display: none !important;
}

.chat_msg_item.chat_msg_item_user {
  background-color: #333537 !important;
}

.chat-window footer .v-btn__content {
  color: #ffffff !important;
}

.v-application.v-theme--light .chat-window footer .v-btn__content {
  color: #1867c0 !important;
}

.v-application.v-theme--light .chat_msg_item.chat_msg_item_user {
  background-color: #ececec !important;
}

#visions-section-mobile {
  display: none;
}

@media only screen and (max-width: 680px) {
  #visions-section-desktop {
    display: none;
  }

  #visions-section-mobile {
    display: block;
  }

  #userName {
    display: none;
  }

}

/* ========================================= */
/* Styling for AI Chat Image Search Results  */
/* ========================================= */

/* Κύριο Container */
.image-results {
  font-family: Arial, sans-serif;
  max-width: 500px;
  /* Προσαρμόζεται στο πλάτος του chat */
  color: #e0e0e0;
  /* Ανοιχτό γκρι κείμενο */
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Τίτλος Αποτελεσμάτων */
.image-results__title {
  margin-bottom: 10px;
  border-bottom: 1px solid #444;
  /* Διακριτική γραμμή */
  padding-bottom: 5px;
  color: #ffffff;
  /* Λευκός τίτλος */
  font-size: 1.1em;
  font-weight: bold;
}

/* Το Grid Container */
.image-results__grid {
  display: grid;
  /* 3 στήλες, ίσου πλάτους */
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  /* Μικρό κενό μεταξύ των εικόνων */
  background: #0a0a0a;
  /* Πολύ σκούρο background για το grid */
  padding: 5px;
  border-radius: 4px;
  /* Στρογγυλεμένες γωνίες */
}

/* Κάθε Item (το link που περιέχει την εικόνα) */
.image-results__item {
  display: block;
  /* Για να πιάσει σωστά το μέγεθος */
  overflow: hidden;
  /* Κρύβει ό,τι περισσεύει από το scale */
  /* Τετράγωνο κουτί, προσαρμόζεται στο grid */
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  /* Στρογγυλεμένες γωνίες */
  background: #262626;
  /* Background για όταν φορτώνει η εικόνα */
  cursor: pointer;
}

/* Η Εικόνα (Thumbnail) μέσα στο link */
.image-results__thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Γεμίζει το κουτί χωρίς παραμόρφωση */
  border: none;
  display: block;
  /* Καбираει περιττά margins */
  transition: transform 0.2s ease-in-out, opacity 0.3s ease;
  /* Ομαλό zoom και fade-in */
  opacity: 0.9;
  /* Ελαφρώς διαφανές αρχικά */
}

/* Hover Effect: Zoom και πλήρης αδιαφάνεια */
.image-results__item:hover .image-results__thumbnail {
  transform: scale(1.1);
  /* Μεγέθυνση στο hover */
  opacity: 1;
}

/* Σύνοψη Αποτελεσμάτων */
.image-results__summary {
  color: #bdbdbd;
  /* Πιο σκούρο γκρι */
  margin-top: 10px;
  display: block;
  /* Για να πιάσει το margin */
  font-size: 0.85em;
  text-align: center;
}

/* Loader για τις εικόνες */
.hermes-welcome {
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
}

.ticket-datatable .v-data-table__tr {
  cursor: pointer;
}

/* Global Scrollbar Styling - Applies to all scrollable elements */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: background-color 0.2s;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

*::-webkit-scrollbar-corner {
  background: transparent;
}

/* Desktop - Only column scrolling, no dialog content scrolling */
@media (min-width: 960px) {
  .blog-dialog-content {
    overflow: hidden !important;
    max-height: none !important;
  }

  .blog-list-column {
    max-height: calc(80vh - 20px);
    overflow-y: auto;
  }

  .blog-content-column {
    max-height: calc(80vh - 20px);
    overflow-y: auto;
  }

  .blog-search-sticky {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: rgb(var(--v-theme-surface));
    padding: 16px 16px 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 8px;
  }
}

/* Mobile - Only dialog content scrolling, no column scrolling */
@media (max-width: 959px) {
  .blog-dialog-content {
    overflow-y: auto;
    max-height: 80vh;
  }

  .blog-list-column,
  .blog-content-column {
    overflow-y: visible !important;
    max-height: none !important;
  }

  .blog-search-sticky {
    position: relative;
    padding: 16px 16px 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 8px;
    background-color: transparent;
  }
}

/* Blog Post Items Border Styling */
.blog-post-item {
  border-color: #6e6e6e !important;
}

.blog-post-item:hover {
  border-color: #ffffff !important;
}

#blog-content-area p.text-h6 {
  background-color: rgba(8, 152, 181, 0.5);
  padding: 5px;
  border-radius: 10px;
}