body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F8F8F8;
}

.container {
    padding: 16px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.header p {
    margin: 0;
    font-size: 18px;
    color: #000;
}

.status-bar {
    display: flex;
    align-items: center;
}

.status-bar .circle {
    width: 12px;
    height: 12px;
    background-color: #000;
    border-radius: 50%;
    margin-right: 4px;
}

.status-bar .triangle {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid #000;
}

h1 {
    font-size: 24px;
    margin-bottom: 8px;
}

.filter-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.filter-buttons button {
    background-color: #EAEAEA;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
}

.filter-buttons .active {
    background-color: #D1C4E9;
    color: #000;
}

.sort-button {
    margin-bottom: 16px;
}

.sort-button button {
    background-color: transparent;
    border: none;
    color: #757575;
    cursor: pointer;
    text-decoration: underline;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.image-card {
    background-color: #FFF;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.image-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 8px;
}

.image-card p {
    margin: 4px 0;
    font-size: 14px;
    color: #333;
}

.update-time {
    font-size: 12px;
    color: #888;
}