#raw24-quickstart-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#raw24-quickstart-modal .raw24-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

#raw24-quickstart-modal .raw24-modal-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    border-bottom: 1px solid #eee;
    gap: 10px;
    background: none;
}

#raw24-quickstart-modal .raw24-modal-header .raw24-modal-title {
    margin-bottom: 0;
    text-align: center;
}

#raw24-quickstart-modal .raw24-modal-header .raw24-activity-search {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

#raw24-quickstart-modal .raw24-quickstart-intro {
    background-color: #ededed;
    text-align: left;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 0;
    border-left: 4px solid #6ea621;
    font-size: 0.9em;
    line-height: 1.3em;
}

#raw24-quickstart-modal .raw24-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    margin-top: 10px;

}

#raw24-quickstart-modal .raw24-modal-title {
    margin-top: 0;
    line-height: 30px;
    margin-bottom: 13px;
}

.raw24-quickstart-list {
    margin-bottom: 20px;
}

.raw24-qs-item {
    display: flex;
    align-items: flex-start;
    padding: 8px 4px;
    border-bottom: 1px solid #eee;
}

.raw24-qs-item input[type=checkbox] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.raw24-qs-text {
    display: flex;
    flex-direction: column;
}

.raw24-qs-benefit,
.raw24-qs-hazard {
    opacity: 1 !important;
}

.raw24-qs-hazard-measure {
    font-size: .8em;
    color: #9f9f9f;
    font-style: italic;
    line-height: 1.2em;
}

.raw24-qs-hazard-name {
    font-weight: bold;
}

#raw24-quickstart-modal .raw24-modal-actions {
    text-align: right;
    margin-top: 10px;
    border-top: 1px solid #eee;
    padding-top: 10px;
    background: #fff;
}

#raw24-quickstart-modal .raw24-modal-actions button {
    margin-left: 8px;
    padding: 8px 14px;
    font-size: .9rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #fff0;
    transition: all 0.2s ease;
}

.raw24-qs-activity {
    border-bottom: 1px solid #eee;
    cursor: pointer;
    background-color: #f5f9ff;
    padding: 6px;
    border-radius: 8px;
    margin-bottom: 6px;
}

.raw24-qs-activity:hover {
    background: #f5f5f5;
}

#raw24-activity-search {
    width: 100%;
    padding: 8px;
    margin-bottom: 8px;
    margin-top: 2px;


    border-radius: 6px;
    background-color: #fafafa !important;

    border: 10px solid #ededed !important;
    margin-top: 8px !important;
}

.raw24-template-btn {
    padding: 8px 14px;
    font-size: 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.raw24-template-btn.primary {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

.raw24-template-btn.primary:hover {
    background: #005f8d;
    border-color: #005f8d;
}

.raw24-template-btn.secondary {
    background: #f6f6f6;
    color: #333;
    border: 1px solid #ccc;
}

.raw24-template-btn.secondary:hover {
    background: #eaeaea;
}