﻿
.glidego-entry-page-trip-request .form-group .input-rf,
.glidego-entry-page-trip-request .form-group .select-rf,
.glidego-entry-page-trip-request .multiselect-rf,
.glidego-entry-page-trip-request .form-group .datepicker-rf, 
.glidego-entry-page-trip-request .input-wrapper {
    height: 51px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 16px;
    color: rgba(34, 34, 33, 0.90);
    font-family: Lato;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.glidego-entry-page-trip-request .form-group .select-rf, .glidego-entry-page-trip-request .multiselect-rf {
    height: auto;
}
.title-L-20N {
    color: #009CA6;
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.title-L-18N-FW500, .rf-control-label {
    color: #222221;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.form-input-field {
    border-radius: 10px;
    border: 1px solid #D1D5DC;
    background: #FFF;
}
.trip-form-container {
    min-height: 100vh;
    font-family: Lato;
}


.form-sub-card {
    flex:1;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin: 0 auto;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.icon-class {
    border-radius: 8px;
    background: rgba(0, 156, 166, 0.10);
    padding: 10px;
}

.icon {
    font-size: 1.25rem;
}

.section-title {
    font-size: 16px;
    color: rgb(var(--ThemeColor));
    margin-bottom: 0px;
    padding-bottom: 0px;
    font-weight: 600;
}

.btn-add-sof {
    margin-left: auto;
    background-color: #00bcd4;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.875rem;
}

    .btn-add-sof:hover {
        background-color: #00acc1;
    }

.glidego-entry-page-trip-request .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1.5rem;
    margin-bottom: 1rem;
}

    .form-row:has(.form-group-small) {
        grid-template-columns: 1fr 1fr auto;
    }

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-small {
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

.required {
    color: #f44336;
}

.form-input, .form-select {
    border-radius: 10px;
    padding: 0.625rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
    width: 100%;
    transition: border-color 0.2s;
}

    .form-input:focus, .form-select:focus {
        outline: none;
        border-color: #00bcd4;
    }

.form-select {
    background-color: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
}

.tag-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    flex-wrap: wrap;
    min-height: 42px;
}

.tag {
    background-color: #e0e0e0;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tag-remove {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    color: #666;
    padding: 0;
    line-height: 1;
}

    .tag-remove:hover {
        color: #333;
    }

.tag-expand {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    font-size: 1.25rem;
    padding: 0;
    margin-left: auto;
}

.percentage-input {
    position: relative;
    display: flex;
    align-items: center;
}

    .percentage-input input {
        padding-right: 2rem;
    }

.percentage-symbol {
    position: absolute;
    right: 0.75rem;
    color: #666;
    pointer-events: none;
}

.weight-input {
    display: flex;
    gap: 0.5rem;
}

    .weight-input input {
        flex: 1;
    }

.weight-select {
    min-width: 150px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

    .checkbox-group input[type="checkbox"] {
        width: 18px;
        height: 18px;
        cursor: pointer;
        accent-color: #009CA6;
    }

    .checkbox-group label {
        margin: 0;
        cursor: pointer;
        font-weight: 400;
    }

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    margin-bottom: 100px;
}

.btn-cancel, .btn-next {
    padding: 0.625rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.875rem;
    border: none;
}

.btn-cancel {
    border-radius: 8px;
    background-color: #E8E8E8;
    color: #222221;
}

    .btn-cancel:hover {
        background-color: #e0e0e0;
    }

.btn-next {
    border-radius: 8px;
    background: #009CA6;
    /* background-color: #00bcd4; */
    color: white;
}

    .btn-next:hover {
        background-color: #00acc1;
    }

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

        .form-row:has(.form-group-small) {
            grid-template-columns: 1fr;
        }
}

.goto-sof {
    display: flex;
    width: 220px;
    height: 46px;
    padding: 14px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #009CA6;
    color: #FFF;
    text-align: center;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    border:none;
}


.trip-request-input-group {
    position: relative;
    display: flex;
    border: 1px solid #ddd;
    /*overflow: hidden;*/
    height: 46px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 12px !important;
    border-radius: 10px;
    font-size: 16px;
    color: rgba(34, 34, 33, 0.90);
    font-family: Lato;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom:0;
}

    .trip-request-input-group input {
        flex: 1;
        border: none;
        padding: 10px 12px;
        outline: none;
        font-size: 14px;
        height: 40px;
    }

.borderless-btn {
    background: none;
    border: none;
    color: #009CA6;
}

#buttonCancel {
    color: #B12A1C;
    text-decoration: underline;
}

.trip-request-cancelation-container {
    display: flex;
    padding: 5px 15px;
    align-items: center;
    gap: 10px;
}

.trip-request-cancelation-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: 1px solid #B12A1C;
    color: #B12A1C;
    border-radius: 100%;
    width: 20px;
    height: 20px;
}

.info-row.tripoverview-col {
    flex: 1 0 200px;
}