﻿/* 📦 Wizard Container */
.wizard-form-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* 📐 Grid Layout για φόρμες */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.date-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

    .date-container .form-group {
        flex: 1;
        min-width: 200px;
    }

/* ✅ Στυλ για περίληψη κράτησης */
.confirmation-summary {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

    .confirmation-summary p {
        margin: 4px 0;
        font-size: 14px;
    }

/* 📍 Toast μηνύματα */
.e-toast-info {
    background-color: #17a2b8;
    color: white;
    font-weight: bold;
}

/* 🧭 Wizard Steps */
.wizard-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 15px;
}

.wizard-step {
    text-align: center;
    padding: 8px 12px;
    border-radius: 6px;
    background-color: #f0f0f0;
    color: #555;
    font-weight: 500;
    transition: 0.3s;
}

    .wizard-step.active {
        background-color: #007bff;
        color: white;
        font-weight: bold;
    }

    .wizard-step .step-number {
        display: block;
        font-size: 18px;
    }

.wizard-arrow {
    font-size: 20px;
    color: #999;
}

/* 📝 Βασική φόρμα */
custom-form {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
}

.form-title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* ✍️ Στοιχεία Φόρμας */
.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        font-size: 14px;
        font-weight: 800;
        margin-bottom: 5px;
        color: #555;
    }

.input-style {
    width: 100%;
    border-radius: 5px;
    padding: 10px;
}

/* 🔘 Κουμπιά */
.buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    flex-wrap: wrap;
}

    .buttons .e-btn {
        margin-right: 8px;
    }

.save-btn {
    background: #28a745 !important;
    color: white !important;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 6px;
}

.cancel-btn {
    background: #dc3545 !important;
    color: white !important;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 6px;
}

.save-btn:hover {
    background: #218838 !important;
}

.cancel-btn:hover {
    background: #c82333 !important;
}
