.easymopo-form-container {
    max-width: 600px;
    margin: 2em auto;
    padding: 2em;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #f9f9f9;
}
.easymopo-form-container label {
    display: block;
    margin-bottom: .5em;
    font-weight: 700;
}
.easymopo-form-container input[type=text],
.easymopo-form-container input[type=password],
.easymopo-form-container textarea,
.easymopo-form-container select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
.easymopo-form-container input[type=radio] {
    margin-right: 5px;
}
.easymopo-form-container hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 2em 0;
}
.easymopo-logout-link {
    text-align: right;
    font-size: .9em;
}
.easymopo-error {
    color: #d9534f;
    border: 1px solid #d9534f;
    padding: 10px;
    margin-bottom: 1em;
    border-radius: 3px;
}
.easymopo-success {
    color: #5cb85c;
    border: 1px solid #5cb85c;
    padding: 10px;
    margin-bottom: 1em;
    border-radius: 3px;
}

.easymopo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.easymopo-gallery-item {
    max-width: 150px;
    height: auto;
    border: 1px solid #eee;
    padding: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.easymopo-clear-btn {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
    margin-top: 10px;
}

.easymopo-clear-btn:hover {
    background-color: #5a6268;
}

.easymopo-clear-btn:active {
    background-color: #495057;
}

@media (max-width: 768px) {
    .easymopo-gallery-item {
        max-width: 100px;
    }
}
