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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    background-color: #fff;
    min-height: 100vh;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #eee;
}

.header h1 {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.close, .menu {
    font-size: 24px;
    color: #666;
    cursor: pointer;
}

.certificate-header {
    background-color: #0FA0DA;
    color: #fff;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-status {
    display: flex;
    align-items: center;
    gap: 18px;
}

.certificate-status img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.icon {
    font-size: 24px;
}

.status-text {
    font-size: 22px;
    letter-spacing: 2px;
}

.photo-container {
    text-align: right;
    /* display: flex; */
    padding-right: 60px;
    margin-bottom: 10px;
}

.photo-container img {
    width: 100px;
    height: 140px;
    object-fit: cover;
    margin-top: 10px;
}



.photo-placeholder {
    width: 120px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    overflow: hidden;
    text-align: center;
}

.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-text {
    font-size: 14px;
    color: #999;
}

.info-table {
    width: 100%;
}

.info-row {
    display: flex;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.label {
    width: 40%;
    font-size: 14px;
    padding-left: 30px;
    color: #444444;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.value {
    width: 60%;
    font-size: 14px;
    color: #444444;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.footer {
    margin-top: 10px;
    padding: 14px;
    text-align: center;
    background-color: #f5f5f5;

}

.footer-text {
    font-size: 16px;
    font-weight: bold;
}

@media (max-width: 480px) {
    .container {
        margin: 0;
        border: none;
    }
}