@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    font-family: Roboto, serif;
}

.row-actions {
    display: flex;
    align-items: center;
    gap: 10px;

    svg {
        width: 18px;
        height: 18px;
    }

    .delete-link svg {
        width: 20px;
        height: 20px;

        path {
            stroke: #d90000;
        }
    }
}

.navbar.shadow-sm {
    box-shadow: none !important;
    border-bottom: 1px solid #eaeaea;
}

.navbar {
    a {
        color: #000;
    }
}

.link-label {
    font-size: 10px;
    font-weight: 500;
    color: gray;
    text-transform: uppercase;
}

.camp-link {
    background-color: #fff;
    padding: 7px;
    border-radius: 4px;

    a {
        font-weight: 500;
    }
}

.add-exp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #b7b7b7;
    color: #838383;
    transition: 0.3s;
}
.add-exp:hover {
    border: 1px solid #000;
    color: #000;
}
.exp-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;

    .exp-list-item {
        .exp-header {
            background-color: #f2f7fd;
            border-radius: 4px;
            border: 1px solid #ccdcef;
            border-bottom-right-radius: 0 !important;
            padding: 2px 6px;
            display: flex;
            align-items: center;

            .expand-exp {
                width: 26px;
                display: flex;
                align-items: center;
                justify-content: start;

                svg {
                    width: 20px;
                    height: 20px;

                    path {
                        stroke: #888888;
                    }
                }
            }

            .title {
                flex: 1;
                width: 100%;
                display: flex;
                align-items: center;
                gap: 6px;

                input {
                    flex: 1;
                    border: 0;
                    background-color: #f2f7fd;
                    padding-left: 7px;
                    padding-right: 7px;
                    height: 26px;
                }
                input::placeholder {
                    color: #bacada;
                }
                input:focus {
                    outline: none !important;
                }

            }

            .exp-actions {
                width: 26px;
                display: flex;
                align-items: center;
                justify-content: end;

                .exp-delete {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                .exp-delete svg {
                    width: 20px;
                    height: 20px;

                    path {
                        stroke: #ce6868;
                    }
                }
            }
        }

        .exp-body {
            margin-left: 39px;
            border-left: 1px solid #ccdcef;
            border-bottom: 1px solid #ccdcef;
            border-right: 1px solid #ccdcef;

            padding: 6px 10px;

            .add-segment {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                padding: 1px 3px;
                border-radius: 3px;
                border: 1px solid #b7b7b7;
                color: #838383;
                transition: 0.3s;
                text-decoration: none;
                font-size: 11px;
            }

            .add-segment:hover {
                border: 1px solid #000;
                color: #000;
            }

            .exp-segments {
                margin-top: 10px;
                list-style: none;
                padding: 0;
                display: flex;
                flex-direction: column;
                gap: 3px;

                li {
                    display: flex;
                    align-items: center;
                    gap: 10px;

                    .segment-code {
                        flex: 1;
                        border: 0;
                        background-color: #fff;
                        padding-left: 7px;
                        padding-right: 7px;
                        height: 26px;
                    }

                    .segment-percent {
                        flex: 1;
                        border: 0;
                        background-color: #fff;
                        padding-left: 7px;
                        padding-right: 7px;
                        height: 26px;
                    }

                    .segm-delete {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        width: 20px;
                        height: 20px;

                        path {
                            stroke: #ce6868;
                        }
                    }
                }
            }
        }
    }
}
.hidden-elem {
    display: none !important;
}
#popcon {
    position: absolute !important;
}
