.contest-uploader-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.contest-uploader-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-field label {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
}

.contest-input {
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.photo-boxes-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.upload-title {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.photo-boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.photo-box {
    aspect-ratio: 1 / 1;
}

.photo-box-label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border: 2px dashed #cccccc;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.box-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #888888;
}

.photo-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contest-submit-btn {
    padding: 12px 20px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.contest-submit-btn:hover {
    background: #333333;
}

.contest-form-message {
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    display: none;
}

.contest-form-message.success {
    background: #e6f7ed;
    color: #2e7d32;
    border: 1px solid #a3cfbb;
    display: block;
}

.contest-form-message.error {
    background: #fdf2f2;
    color: #c81e1e;
    border: 1px solid #f8b4b4;
    display: block;
}
