.roadmap-wrapper {
    padding: 100px 20px;
    background: #fff;
    overflow-x: hidden;
}

.road-container {
    position: relative;
    width: 1000px;
    height: 600px;
    margin: 0 auto;
}

/* Base Road Styling */
.road-segment {
    position: absolute;
    border: 40px solid #333;
    width: 300px;
    height: 200px;
}

/* Creating the S-Curve effect without SVG */
.curve-down {
    border-radius: 0 150px 150px 0;
    border-left: none;
    top: 0; left: 0;
}

.curve-up {
    border-radius: 150px 0 0 150px;
    border-right: none;
    top: 160px; left: 150px;
    border-color: #333;
}

#moving-car {
    position: absolute;
    font-size: 30px;
    z-index: 100;
    transition: all 0.1s linear;
}

.milestone {
    position: absolute;
    width: 150px;
}
/* Manual positioning for each milestone to match road */
.milestone-0 { top: -50px; left: 20px; }
.milestone-1 { top: 120px; left: 280px; }

/* Unique Prefix: crm-admin- */

.crm-admin-wrapper {
    margin-top: 20px;
}

.crm-admin-grid {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 20px;
}

.crm-admin-form-container {
    flex: 0 0 350px;
}

.crm-admin-table-container {
    flex: 1;
}

.crm-admin-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
    padding: 20px;
}

.crm-admin-card-title {
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-size: 1.3em;
}

.crm-admin-field-group {
    margin-bottom: 15px;
}

.crm-admin-field-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.crm-admin-field-group input, 
.crm-admin-field-group textarea {
    width: 100%;
}

.crm-admin-badge {
    background: #e7f5fe;
    color: #0073aa;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
}

.crm-admin-delete {
    color: #a00;
    text-decoration: none;
}

.crm-admin-delete:hover {
    color: #f00;
}

@media screen and (max-width: 900px) {
    .crm-admin-grid {
        flex-direction: column;
    }
    .crm-admin-form-container {
        width: 100%;
        flex: none;
    }
}



