/* styles.css */
.container-split {
    display: flex;
    width: 100%;
    height: 100vh;
}
.left-panel, .right-panel {
    flex: 1;
    padding: 20px;
    overflow-y: auto; /* Handle overflow content */
}
.right-panel {
    background-color: #f7f7f7;
    border-left: 1px solid #ddd;
}
.industry-name {
    font-size: 1.2em;
}
.industry-info {
    font-size: 0.9em;
    color: gray;
}
.h2-custom {
    font-size: 1.8em;
}
.h3-custom {
    font-size: 1.3em;
}
.custom-list-item {
    border: 1px solid #ddd;
    margin-bottom: 5px;
    background-color: #fff;
    padding: 10px;
}
.custom-list-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.industry-info-keywords {
    font-size: 0.9em;
    color: gray;
    margin-top: 5px;
    margin-left: 15px;
}
.remove-button {
    align-self: center;
    margin-left: 15px;
}

.card {
    border: 1px solid #ddd;
    margin-bottom: 5px;
    background-color: #fff;
    padding: 10px;
}

.card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title {
    font-weight: bold;
}

.card-text {
    font-size: 0.9em;
    color: gray;
}

.add-button {
    margin-left: 15px;
}