:root {
    --orange: #E65100;
    --blue: #2874f0;
    --light-gray: #f5f5f5;
    --dark-gray: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-gray);
    background-color: var(--light-gray);
}

.bg-orange {
    background-color: var(--orange) !important;
}

.btn-orange {
    background-color: var(--orange);
    color: white;
    border: none;
}

.btn-orange:hover {
    background-color: #cc4700;
    color: white;
}

.text-blue {
    color: var(--blue);
}

.steps-container {
    margin: 20px 0;
}

.steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ddd;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-bottom: 8px;
}

.step-title {
    font-size: 14px;
    color: #777;
}

.step.active .step-number {
    background-color: var(--orange);
    color: white;
}

.step.active .step-title {
    color: var(--orange);
    font-weight: bold;
}

.image-preview {
    min-height: 100px;
    border: 1px dashed #ccc;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image-preview img {
    max-width: 100%;
    max-height: 200px;
}

/* Admin styles */
.admin-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 48px 0 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
    background-color: #f8f9fa;
}

.admin-sidebar .nav-link {
    font-weight: 500;
    color: #333;
}

.admin-sidebar .nav-link.active {
    color: var(--orange);
}

.admin-sidebar .nav-link:hover {
    color: var(--orange);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .steps::before {
        display: none;
    }
    
    .step {
        flex-direction: row;
        margin-bottom: 10px;
    }
    
    .step-number {
        margin-right: 10px;
        margin-bottom: 0;
    }
}


