
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    /* padding: 20px 0px 20px 0px; */
}

.container {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px 10px 20px 10px;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.header h1 {
    color: #333;
}

.warning {
    color: #ff0000;
    font-size: 16px;
    font-weight: bold;
    margin-right: 5px;
}

.prompt {
    color: #003399;
    /* font-size: 16px; */
    font-weight: bold;
    margin-right: 5px;
}

.step {
    color: #336699;
    /* font-size: 16px; */
    font-weight: bold;
    margin-bottom: 10px;
}

.main-content {
    display: flex;
    flex-direction: column;
}

.section {
    margin-bottom: 10px;
}

.section p {
    line-height: 35px;
}

.section p img {
    width: 100%;
    height: 100%;
    margin-bottom: 5px;
}

.section p .importButton {
    width: 100%;
    max-width: 360px;
    display: block; 
    padding: 10px 20px; 
    background-color: #007BFF; 
    color: white;
    font-weight: bold;
    text-decoration: none; 
    border-radius: 5px;
}