#archive-wrapper {
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

#archive-controls {
    margin-bottom: 15px;
    padding: 15px;
    background: #f6f7f7;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    display: flex;
    gap: 10px;
    align-items: center;
}

#archive-editor-container {
    background: #e0e0e0;
    padding: 40px;
    display: flex;
    justify-content: center;
    border-radius: 4px;
    min-height: 400px;
}

#archive-content-card {
    background: #fff;
    width: 100%;
    max-width: 600px;
    min-height: 300px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    outline: none;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

#archive-content-card:empty:before {
    content: attr(data-placeholder);
    color: #aaa;
    pointer-events: none;
    display: block;
    /* For Firefox */
}

#archive-content-card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0;
}