.auction-view {
    max-width: 700px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 14px;
}

.price {
    font-size: 20px;
}

.reserve {
    margin: 10px 0;
    font-weight: bold;
}

.bid-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
}

.bid-form button {
    width: 100%;
    padding: 14px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 10px;
}

.bid-list {
    list-style: none;
    padding: 0;
}

.bid-list li {
    padding: 8px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}










/* Reset & base */
* {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    margin: 0;
    background: #f3f4f6;
    padding: 0;
}

/* Main container */
.auction-create {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 20px;
}

/* Card */
.auction-create form {
    background: #ffffff;
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Title */
.auction-create h2 {
    text-align: center;
    margin-bottom: 18px;
    font-size: 26px;
    color: #111;
}

/* Section headers */
.auction-create h4 {
    margin: 20px 0 10px;
    font-size: 18px;
    color: #333;
}

/* Messages */
.message {
    text-align: center;
    margin-bottom: 14px;
    font-size: 15px;
}

.text-success {
    color: #16a34a;
}

.text-error {
    color: #dc2626;
}

/* Inputs */
.auction-create input[type="text"],
.auction-create input[type="number"],
.auction-create input[type="file"],
.auction-create textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    font-size: 16px;
    background: #fff;
}

/* Textarea */
.auction-create textarea {
    resize: vertical;
    min-height: 80px;
}

/* Focus */
.auction-create input:focus,
.auction-create textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

/* File input spacing */
.auction-create input[type="file"] {
    padding: 10px;
    background: #f9fafb;
}

/* Submit button */
.auction-create button {
    width: 100%;
    padding: 16px;
    margin-top: 10px;
    background: #2563eb;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 14px;
    cursor: pointer;
}

.auction-create button:hover {
    background: #1d4ed8;
}

/* Mobile tweaks */
@media (max-width: 600px) {
    .auction-create {
        padding: 14px;
    }

    .auction-create h2 {
        font-size: 22px;
    }
}





