/* ============================================
   DSEG7 Classic Webfont (7‑segment display)
============================================ */

@font-face {
    font-family: 'Scoreboard';
    src: url('/assets/font/scoreboard.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Flipboard wrapper */
.flipboard {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}

.flipboard span {
  display: inline-block;
  width: 34px;
  height: 44px;
  background: #000;
  color: #fff;
  font-family: 'Scoreboard', monospace;
  font-size: 30px;
  text-align: center;
  line-height: 44px;
  margin: 1px;
  border-radius: 3px;
  box-shadow: inset 0 -2px 0 #333;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.flip-row td {
    text-align: center;
}

.flipboard.align-left {
  justify-content: flex-start;
}

.schedule-table td:nth-child(6) .flipboard {
    justify-content: flex-end !important;
}
.schedule-table th:nth-child(1),
.schedule-table td:nth-child(1) {
    width: 20%; /* CALLSIGN */
}

.schedule-table th:nth-child(2),
.schedule-table td:nth-child(2) {
    width: 20%; /* FLIGHT */
}

.schedule-table th:nth-child(3),
.schedule-table td:nth-child(3) {
    width: 40%; /* ROUTE */
}

.schedule-table th:last-child,
.schedule-table td:last-child {
    width: 20%;
    text-align: right;
}



/* Τίτλοι του πίνακα αναχωρήσεων */
.schedule-table th {
  font-family: "Courier New", monospace;
  font-size: 14px;
  padding: 6px 4px;
  letter-spacing: 0.5px;
  background: #000;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: inset 0 -2px 0 #333;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center !important;
  vertical-align: middle;
}
.schedule-table {
    table-layout: fixed;
}


 /* Χρώματα */
:root {
  --color-primary: #006994;
  --color-secondary: #e67451;
  --color-accent: #ffd700;
  --color-light: #ffffff;
  --color-dark: #333333;
  --color-grey: #d9d9d9;

  --font-main: Arial, sans-serif;

  --spacing-small: 10px;
  --spacing-medium: 20px;
  --spacing-large: 40px;

  --border-radius: 8px;
  --border-color: #bbb;
}

/* ------------------------------
   ADMIN LAYOUT
------------------------------ */

.admin-wrapper {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 16px;
}

.admin-page-header h1 {
  margin: 0;
  font-size: 24px;
  color: #003366;
}

.admin-page-subtitle {
  margin-top: 4px;
  color: #666;
  font-size: 14px;
}

.admin-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 18px 0;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-search input {
  padding: 8px 12px;
  min-width: 260px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.admin-filters select {
  padding: 7px 10px;
  margin-left: 6px;
  font-size: 14px;
}

.admin-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table thead {
  background: #f5f7fb;
}

.admin-table th,
.admin-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.admin-table tbody tr:hover {
  background: #f9fbff;
}

.admin-user-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-user-photo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.admin-user-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #004aad;
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-user-name {
  font-weight: 600;
}

.admin-user-id {
  font-size: 12px;
  color: #777;
}

/* ------------------------------
   ROLE BADGES
------------------------------ */

.role-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.role-badge-user {
  background: #e3f2fd;
  color: #0d47a1;
}

.role-badge-staff {
  background: #fff3e0;
  color: #e65100;
}

.role-badge-admin {
  background: #ffebee;
  color: #b71c1c;
}

.role-badge-superadmin {
  background: #ede7f6;
  color: #4a148c;
}



/* ------------------------------
   ACTION BUTTONS
------------------------------ */

.admin-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.btn-small {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-view {
  background: #e3f2fd;
  color: #0d47a1;
}

.btn-edit {
  background: #e8f5e9;
  color: #1b5e20;
}

.btn-role {
  background: #fff3e0;
  color: #e65100;
}

.btn-view:hover {
  background: #bbdefb;
}

.btn-edit:hover {
  background: #c8e6c9;
}

.btn-role:hover {
  background: #ffe0b2;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 768px) {
  .admin-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .admin-search input {
    width: 100%;
  }
  .admin-filters {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
  }
}

/* ------------------------------
   ROLE MODAL
------------------------------ */

.role-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.role-modal-content {
  background: #1a1d24;
  color: #fff;
  padding: 24px;
  width: 380px;
  border-radius: 8px;
  border-top: 3px solid #ffd700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  animation: slideUp 0.3s ease;
}

.role-modal-content h2 {
  margin-top: 0;
  color: #ffd700;
  font-size: 20px;
}

.role-modal-close {
  float: right;
  font-size: 24px;
  cursor: pointer;
  color: #ccc;
}

.role-modal-close:hover {
  color: #fff;
}

.role-modal-content select {
  width: 100%;
  padding: 8px;
  margin: 12px 0;
  border-radius: 4px;
  border: 1px solid #444;
  background: #2a2d35;
  color: #fff;
}

.role-modal-btn {
  width: 100%;
  padding: 10px;
  background: #004aad;
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}

.role-modal-btn:hover {
  background: #00337a;
}

.role-modal-msg {
  margin-top: 12px;
  font-size: 14px;
  text-align: center;
}

/* ------------------------------
   PAGINATION
------------------------------ */

.pagination {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.page-btn {
  padding: 6px 12px;
  background: #004aad;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
}

.page-btn:hover {
  background: #00337a;
}

.page-info {
  color: #333;
  font-size: 14px;
}

/* ------------------------------
   NOTAM POPUP (RESPONSIVE + STICKY HEADER)
------------------------------ */

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-in-out;
}

.popup.show {
  display: flex;
}

.popup-content {
  background: #fff;
  width: 60vw;
  max-width: 800px;
  height: 70vh;
  padding: 0;
  border-radius: 10px;
  overflow-y: auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  animation: slideUp 0.4s ease;
  position: relative;
}

/* Sticky header */
.popup-header {
  position: sticky;
  top: 0;
  background: #fff;
  padding: 20px;
  border-bottom: 2px solid #eee;
  z-index: 20;
}

.popup-header h2 {
  margin: 0;
  padding: 0;
}

.popup-meta {
  margin: 0;
  font-size: 14px;
  color: #666;
}

/* Scrollable body */
.popup-body {
  padding: 20px;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 22px;
  cursor: pointer;
  color: #888;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Mobile */
@media (max-width: 600px) {
  .popup-content {
    width: 90vw;
    height: 80vh;
    font-size: 15px;
  }
}
/* -----------------------------------------
   PROFILE EDIT PAGE (USER + ADMIN)
----------------------------------------- */

.profile-edit-wrapper {
    max-width: 900px;
    margin: 30px auto;
    background: #ffffff;
    padding: 24px 26px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.profile-edit-header {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 20px;
}

.profile-edit-photo {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    background: #f4f4f4;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
}

.profile-edit-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-edit-main {
    flex: 1;
}

.profile-edit-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    margin-top: 10px;
}

.profile-edit-form .full-width {
    grid-column: 1 / 3;
}

.profile-edit-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.profile-edit-form input[type="text"],
.profile-edit-form input[type="email"],
.profile-edit-form textarea,
.profile-edit-form select {
    width: 100%;
    padding: 8px 10px;
    font-size: 14px;
    box-sizing: border-box;
}

.profile-edit-form textarea {
    min-height: 100px;
    resize: vertical;
}

.btn-save-profile {
    padding: 10px 18px;
    background: #004aad;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
}

.btn-save-profile:hover {
    background: #00337a;
}

.profile-edit-message-error {
    margin-bottom: 12px;
    padding: 10px 12px;
    background: #fdecea;
    border-radius: 4px;
    color: #b42318;
    font-size: 14px;
}

.profile-edit-photo-input {
    margin-top: 10px;
    font-size: 13px;
}

.profile-edit-photo-input span {
    display: block;
    color: #555;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .profile-edit-form {
        grid-template-columns: 1fr;
    }
    .profile-edit-form .full-width {
        grid-column: 1 / 2;
    }
    .profile-edit-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* Submenu inside admin dropdown */
.submenu-parent {
    position: relative;
}

.dropdown-submenu {
    display: none;
    position: absolute;
    left: 180px;
    top: 0;
    background: #fff;
    min-width: 180px;
    border: 1px solid #ddd;
    z-index: 999;
}

.submenu-parent:hover .dropdown-submenu {
    display: block;
}

.dropdown-submenu a {
    display: block;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
}

.dropdown-submenu a:hover {
    background: #f0f0f0;
}
/* Submenu inside admin dropdown */
.submenu-parent {
    position: relative;
}

.submenu-parent > a {
    display: block;
    padding: 8px 12px;
}

.dropdown-submenu {
    display: none;
    position: absolute;
    left: 180px; /* εμφανίζεται δεξιά */
    top: 0;
    background: #fff;
    min-width: 180px;
    border: 1px solid #ddd;
    z-index: 999;
}

.submenu-parent:hover .dropdown-submenu {
    display: block;
}

.dropdown-submenu a {
    display: block;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
}

.dropdown-submenu a:hover {
    background: #f0f0f0;
}
/* Arrow for submenu */
.submenu-parent > a .submenu-arrow {
    margin-left: 6px;
    transition: transform 0.2s ease;
    display: inline-block;
}

/* Rotate arrow when submenu is open */
.submenu-parent:hover > a .submenu-arrow {
    transform: rotate(90deg);
}
/* -----------------------------------------
   PILOTS SUBMENU (Admin Panel)
----------------------------------------- */

.submenu-parent {
    position: relative;
}

.submenu-parent > a {
    display: block;
    padding: 8px 12px;
}

/* Arrow rotation */
.submenu-parent > a .submenu-arrow {
    margin-left: 6px;
    transition: transform 0.25s ease;
    display: inline-block;
}

.submenu-parent:hover > a .submenu-arrow {
    transform: rotate(90deg);
}

/* Submenu container */
.dropdown-submenu {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 180px;
    top: 0;
    background: #fff;
    min-width: 180px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateX(-10px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s;
    z-index: 999;
}

/* Show submenu on hover */
.submenu-parent:hover .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Submenu links */
.dropdown-submenu a {
    display: block;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-submenu a:hover {
    background: #f0f0f0;
}
/* -----------------------------------------
   GLOBAL DROPDOWN ANIMATION
----------------------------------------- */

.navbar .dropdown-content {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s;
}

.navbar li:hover > .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* -----------------------------------------
   SUBMENU (Pilots)
----------------------------------------- */

.submenu-parent {
    position: relative;
}

.submenu-parent > a {
    display: block;
    padding: 8px 12px;
}

/* Arrow rotation */
.submenu-parent > a .submenu-arrow {
    margin-left: 6px;
    transition: transform 0.25s ease;
    display: inline-block;
}

.submenu-parent:hover > a .submenu-arrow {
    transform: rotate(90deg);
}

/* Submenu container */
.dropdown-submenu {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 180px;
    top: 0;
    background: #fff;
    min-width: 180px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateX(-10px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s;
    z-index: 999;
}

.submenu-parent:hover .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-submenu a {
    display: block;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-submenu a:hover {
    background: #f0f0f0;
}
/* -----------------------------------------
   GLOBAL DROPDOWN STYLE (UNIFIED)
----------------------------------------- */

.navbar .dropdown-content,
.dropdown-submenu {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Links inside dropdowns */
.navbar .dropdown-content a,
.dropdown-submenu a {
    display: block;
    padding: 10px 14px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s ease;
}

.navbar .dropdown-content a:hover,
.dropdown-submenu a:hover {
    background: #f0f0f0;
}

/* -----------------------------------------
   GLOBAL DROPDOWN ANIMATION
----------------------------------------- */

.navbar .dropdown-content {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s;
}

.navbar li:hover > .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* -----------------------------------------
   PILOTS SUBMENU (SECOND LEVEL)
----------------------------------------- */

.submenu-parent {
    position: relative;
}

.submenu-parent > a {
    display: block;
    padding: 10px 14px;
}

/* Arrow rotation */
.submenu-parent > a .submenu-arrow {
    margin-left: 6px;
    transition: transform 0.25s ease;
    display: inline-block;
}

.submenu-parent:hover > a .submenu-arrow {
    transform: rotate(90deg);
}

/* Submenu container */
.dropdown-submenu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 180px;
    top: 0;
    min-width: 180px;
    transform: translateX(-10px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s;
    z-index: 999;
}

/* Show submenu */
.submenu-parent:hover .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
/* -----------------------------------------
   UNIFIED BLUE DROPDOWN STYLE
----------------------------------------- */

.navbar .dropdown-content,
.dropdown-submenu {
    background: #004aad; /* BLUE */
    border: 1px solid #00337a;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Links inside dropdowns */
.navbar .dropdown-content a,
.dropdown-submenu a {
    display: block;
    padding: 10px 14px;
    color: #ffffff; /* WHITE TEXT */
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s ease;
}

/* Hover effect */
.navbar .dropdown-content a:hover,
.dropdown-submenu a:hover {
    background: #00337a; /* darker blue */
}

/* -----------------------------------------
   GLOBAL DROPDOWN ANIMATION
----------------------------------------- */

.navbar .dropdown-content {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s;
}

.navbar li:hover > .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* -----------------------------------------
   PILOTS SUBMENU (SECOND LEVEL)
----------------------------------------- */

.submenu-parent {
    position: relative;
}

.submenu-parent > a {
    display: block;
    padding: 10px 14px;
    color: #ffffff; /* white text */
}

/* Arrow rotation */
.submenu-parent > a .submenu-arrow {
    margin-left: 6px;
    transition: transform 0.25s ease;
    display: inline-block;
    color: #ffffff; /* white arrow */
}

.submenu-parent:hover > a .submenu-arrow {
    transform: rotate(90deg);
}

/* Submenu container */
.dropdown-submenu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 180px;
    top: 0;
    min-width: 180px;
    transform: translateX(-10px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s;
    z-index: 999;
}

/* Show submenu */
.submenu-parent:hover .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.status-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.role-modal-msg {
    margin-top: 10px;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

/* Success message */
.role-modal-msg.success {
    background: #e3f6e8;
    color: #256029;
}

/* Error message */
.role-modal-msg.error {
    background: #fdecea;
    color: #b71c1c;
}
/* ===========================
   ADMIN PANEL 
=========================== */
.form-section {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.lf-badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: bold;
    color: white;
    display: inline-block;
    min-width: 45px;
    text-align: center;
}

.lf-high { background: #2ecc71; }     /* Πράσινο */
.lf-medium { background: #f1c40f; }   /* Πορτοκαλί */
.lf-low { background: #e74c3c; }      /* Κόκκινο */

.page-title {
    margin-left: 10px;
}

#filtersBar {
    padding-left: 10px !important;
}
.table-container {
    padding-left: 10px;
    padding-right: 10px;
}
/* ============================================
   RETRO AIRPORT DEPARTURE BOARD — BLACK EDITION
   Split‑flap inspired, white-on-black
   SAFE: does NOT touch sticky, overflow, z-index
============================================ */

/* Frame around table */
.table-container {
    background: #111;;          /* full black */
    border: 2px solid #333;       /* industrial grey */
    border-radius: 4px;
    padding: 12px;
}

/* Base table styling */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Courier New", monospace; /* split-flap feel */
    font-size: 15px;
    color: #f5f5f5;               /* white text */
    background: #000000;          /* black background */
}

/* Header row: white on black */
.schedule-table thead th {
    background: #000000;          /* pure black */
    color: #ffffff;               /* pure white */
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 10px;
    border-bottom: 3px solid #555; /* industrial grey */
    white-space: nowrap;
}

/* Row separators */
.schedule-table tbody td {
    border-bottom: 1px solid #333; /* subtle grey */
    padding: 10px 12px;
}

/* Alternating rows (subtle grey tones) */
.schedule-table tbody tr:nth-child(odd) {
    background: #0d0d0d; /* very dark grey */
}

.schedule-table tbody tr:nth-child(even) {
    background: #000000; /* pure black */
}

/* Hover effect: soft white glow */
.schedule-table tbody tr:hover {
    background: #1a1a1a;
    box-shadow: inset 0 0 0 1px #ffffff;
}

/* Buttons inside table */
.schedule-table .btn-aviation-blue {
    background: #ffffff;
    color: #000000;
    border: 1px solid #888;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.schedule-table .btn-aviation-blue:hover {
    background: #cccccc;
}
/* ===========================
   PILOT BADGES GRID
=========================== */

.pilot-badges-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.badge-card {
    width: 140px;
    padding: 15px;
    text-align: center;
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.badge-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.badge-card-icon {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 10px;
}

.badge-card-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
}

.badge-card-date {
    font-size: 13px;
    color: #ccc;
}
.profile-card-full {
    grid-column: 1 / -1; /* Πιάνει όλες τις στήλες του grid */
}
