﻿:root {
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --success-color: #10b981;
    --success-hover: #059669;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
body {
    font-family: Arial, sans-serif;
}

/* Vehicle Details Panel */

    
     


    .vehicle-info-panel.has-data {
        background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
        border-color: var(--success-color);
    }

    .vehicle-info-panel.error {
        background: linear-gradient(135deg, #fef2f2, #fef7f7);
        border-color: var(--danger-color);
    }

.vehicle-info {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.vehicle-details {
    color: var(--gray-600);
    font-size: 0.95rem;
}
.vehicle-info-panel {
    background: linear-gradient(135deg, var(--gray-50), white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
    transition: var(--transition);
}
.alert-rescheduled {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid var(--warning-color);
    border-radius: var(--border-radius);
    padding: 1rem;
    color: #92400e;
    font-weight: 500;
    margin: 1rem 0;
}

    .alert-rescheduled a {
        color: #92400e;
        font-weight: 600;
        text-decoration: underline;
    }

.radio-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: var(--gray-50);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    font-weight: 500;
    color: var(--gray-700);
}
    .form-control.required .control-label:after {
    content: "*";
    color: red;
}
.required label:after {
    color: #e32;
    content: ' *';
    display: inline;
}
 
nav {
    background-color: #333;
    color: #fff;
    padding: 10px;
}

    nav ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

    nav li {
        display: inline;
        margin-right: 10px;
    }

.wizard {
    background-color: #f1f1f1;
    padding: 10px 0px 0px 0px;
    text-align: center;
}

.wizard-step {
    display: none;
}

    .wizard-step.active {
        display: block;
    }

    .wizard-step.completed {
        opacity: 0.6;
        pointer-events: none;
    }

/* Highlight the current step */
.current-step {
    display: block;
}

/* Dim the next step */
.next-step {
    opacity: 0.5;
    pointer-events: none; /* Disable interaction with the next step */
}

/* Set other color for the previous step */
.previous-step {
    /* Add your custom styles here */
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap:wrap;
}

.step {
    text-align: center;
    width: 100px; /* Unified width for each step */

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.circle {
    width: 52px;
    height: 52px;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.steps-container p {
    margin-top: 5px;
    text-align: center; /* Center the step details text */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; /* Add ellipsis for int texts */
    width: 100%; /* Set the width to fill the container */
}

.steps-container .line {
    flex: 1;
    height: 2px;
    background-color: #ccc;
}

.step-content {
    display: none;
}

.steps .active {
    background-color: #4CAF50;
    color: white;
}

.step-content.active {
    display: block;
}
.step:hover {
    transform: translateY(-5px);
}
.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

    .step-navigation button {
        padding: 10px;
        background-color: #f1f1f1;
        border: none;
        cursor: pointer;
    }

        .step-navigation button.current {
            background-color: #007bff;
            color: #fff;
        }
/*-dynamic list--*/
.thumbnail-container img {
    max-width: 100%;
    max-height: 100%;
}

.preview-image {
    max-width: 100px; /* Adjust the width and height as needed */
    max-height: 100px;
    margin: 5px;
}


.thumbnail-container {
    width: 100px;
    height: 100px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.selected-service-item img {
    max-width: 100px;
    height: auto;
}
.loading-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3; /* Light grey */
    border-top: 3px solid #3498db; /* Blue */
    border-radius: 50%;
    animation: spin 1s linear infinite; /* Animation definition below */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.remove-button {
    margin-left: 10px;
}
    /* Adjust the icon size as needed */
    .remove-button i {
        font-size: 16px;
    }

.step.active {
    display: block;
    .circle

{
    background-color: #28a745;
}
}
