* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.alert-icon {
    width: 60px;
    height: auto;
}

.artifact-header {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px 4px;
    background: #f8faff;
    cursor: pointer;
    user-select: none;
}

.artifact-header p {
    font-size: 14px;
    color: #666;
}

.artifact-header:hover {
    background: #eef2ff;
}

.artifact-list {
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    list-style-type: none;
}

.artifact-name {
    font-weight: bold;
    margin-right: 10px;
}

.artifact-item {
    list-style: none;
    padding: 0;
    border: 1px solid #eaecf4;
    border-radius: 8px;
    margin-top: 12px;
    overflow: hidden;
    margin-bottom: 10px;
}

.close-btn {
    background: none;
    border: none;
    color: red;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    padding: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: right;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.container-name {
    color: #ffe600;
    font-size: 1em;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    color: white;
    border: 2px solid red;
    border-radius: 5px;
    background-color: #b12222;
    max-width: 70%;
}
