
       /* body { font-family: Arial, sans-serif; padding: 20px 0px; }
        input[type="text"] { padding: 6px; width: 120px; }
        button { padding: 6px 10px; }
        .result { margin-top: 20px; }

        .tooltip-container {
            position: relative;
            display: inline-block;
        }

        .tooltip-icon {
            cursor: pointer;
            margin-left: 5px;
            font-size: 16px;
        }

        .tooltip-box {
            display: none;
            position: absolute;
            background-color: #fefefe;
            padding: 10px;
            border: 1px solid #ccc;
            font-size: 14px;
            width: 260px;
            border-radius: 6px;
            box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
            top: 24px;
            left: 0;
            z-index: 1000;
        }

        .tooltip-container.show .tooltip-box {
            display: block;
        }

        .section {
            padding: 10px 0 0 0;
        }

        hr {
            border: none;
            border-top: 1px solid #ccc;
            margin: 20px 0;
        }*/

        .collapsible {
            margin-top: 10px;
        }

        .collapsible-title {
            font-weight: bold;
            cursor: pointer;
            background-color: #f1f1f1;
            padding: 8px 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .collapsible-title::after {
            content: '\25BC'; /* Down arrow */
            font-size: 12px;
            margin-left: 10px;
        }

        .collapsible-content {
            display: none;
            margin-top: 8px;
            padding: 10px 12px;
            background-color: #fafafa;
            border-left: 3px solid #007bff;
            border-radius: 4px;
        }
		
		.section-title {
			margin-top: 40px;
			font-size: 22px;
			font-weight: bold;
			color: #007bff;
			text-align: center;
		}

		.stat-row,.stat-row2 {
			display: flex;
			flex-wrap: wrap; /* ✅ επιτρέπει αναδίπλωση */
			
			align-items: flex-start; /* ✅ στοιχίζει κάθετα όταν σπάσει */
			justify-content: space-between;
			align-items: center;
			background: #f7f9fc;
			padding: 12px 15px;
			border: 1px solid #e1e5ea;
			border-radius: 8px;
			margin-bottom: 10px;
			box-shadow: 0 1px 3px rgba(0,0,0,0.05);
		}

		.stat-label,.stat-label2 {
			font-weight: 600;
			font-size: 16px;
			
			align-items: center;
			 flex: 1 1 auto; /* ✅ προσαρμόσιμο πλάτος */
			color: #333;
			  white-space: normal;        /* ✅ επιτρέπει πολλές γραμμές */
  word-break: break-word;     /* ✅ σπάει λέξεις αν χρειαστεί */
			
		}

		.stat-label i,.stat-label2 i {
			margin-right: 8px;
			color: #007bff;
		}

		.stat-value,.stat-value2 {
			font-size: 15px;
			color: #444;
			 flex: 0 1 auto; /* ✅ προσαρμόζεται αλλά δεν πιέζει */
		}


     .info-box {
      border: 1px solid #ccc;
      border-radius: 8px;
      padding: 16px;
      background: #fff;
      max-width: 600px;
      margin: 0 auto auto auto;
	  
    }

    .math-formula {
      font-size: 18px;
      text-align: center;
      margin: 20px 0;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .fraction {
      display: inline-block;
      line-height: 1.4;
    }
    .fraction .top {
      border-bottom: 2px solid #000;
      padding: 0 10px;
    }
    .fraction .bottom {
      padding-top: 4px;
      text-align: center;
    }
    .note {
      font-size: 14px;
      color: #555;
      margin-top: 12px;
    }
	.tabs-container {
    max-width: 900px;
    margin: 40px auto;
    font-family: sans-serif;
}

/*.tab-buttons {
    display: flex;
    border-bottom: 2px solid #ccc;
    justify-content: flex-start;
    margin-bottom: 0;
}

.tab-button {
    background: none;
    border: none;
    padding: 12px 18px;
    margin-right: 4px;
    cursor: pointer;
    font-size: 16px;
    border-bottom: 3px solid transparent;
    color: #444;
    transition: all 0.2s ease;
}

.tab-button:hover {
    color: #007bff;
}

.tab-button.active {
    border-bottom: 3px solid #007bff;
    color: #007bff;
    font-weight: bold;
}

.tab-content {
    display: none;
    border: 1px solid #ccc;
    border-top: none;
    padding: 20px;
    background: #fff;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.tab-content.active {
    display: block;
}*/

@media (max-width: 600px) {
    /*.tab-buttons {
        flex-direction: column;
        border-bottom: none;
    }

    .tab-button {
        border: none;
        border-left: 4px solid transparent;
        text-align: left;
    }

    .tab-button.active {
        border-left: 4px solid #007bff;
        border-bottom: none;
    }*/
}
.stats-summary {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

@media (max-width: 600px) {
	.stats-summary {
   
    margin: 0px auto;
    padding: 5px;
    border: 0px;
    border-radius: 0px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
  .stat-row {
    flex-direction: row; 
    align-items: center;
    flex-wrap: nowrap;
  }

  .stat-label, .stat-value {
    margin: 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
    min-width: 0;
  }
.stat-row2 {
  display: flex;
  flex-direction: column;   /* Κάθετο layout */
  align-items: flex-start;  /* Στοίχιση αριστερά */
  gap: 4px;
}

.stat-label2 {
  display: block;           /* Ώστε να μπει σε νέα γραμμή */
  width: 100%;              /* Πιάνει όλο το πλάτος */
  white-space: normal;      /* Επιτρέπει πολλές γραμμές αν χρειάζεται */
  overflow: visible;
  text-overflow: unset;
}
.stat-value2 {
  padding:8px 0 0 30px;
  display: block;           /* Ώστε να μπει σε νέα γραμμή */
  width: 100%;              /* Πιάνει όλο το πλάτος */
  white-space: normal;      /* Επιτρέπει πολλές γραμμές αν χρειάζεται */
  overflow: visible;
  text-overflow: unset;
}
}
