.main-container {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

#orderContent {
    max-width: 800px;
    margin: 0 auto;
}

.status-form input[type="text"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background: #2a1744;
    border: none;
    color: white;
    font-size: 16px;
}

.status-form button {
    margin-top: 10px;
}

.content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.status-section {
    flex: 1 1 300px;
}

.furby-container {
    flex: 0 1 200px;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.status-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-box h3 {
    color: #fff;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.status-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: baseline;
}

.status-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
    padding-right: 15px;
}

.status-value {
    color: #fff;
}

.time-remaining {
    color: #ffffff;
    font-weight: bold;
    font-family: monospace;
    font-size: 1.2em;
}

.payment-address {
    word-break: break-all;
    font-family: monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px;
    border-radius: 4px;
}

.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}

.status-paid { color: #8cd88e; }
.status-expired { color: #e4948e; }

.delete-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 900px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .status-section {
        flex: 1 1 100%;
    }
    
    .furby-container {
        width: 100%;
        display: flex;
        align-items: center;
        flex: 1 1 100%;
        margin-top: 2rem;
    }
}

@media (max-width: 900px) {
    .delete-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .delete-container button {
        width: 100%;
        margin: 10px 0;
    }

    .delete-form {
        text-align: center;
        width: 100%;
    }
    
    input {
        width: 100% !important;
    }

    .order-button {
        width: 100% !important;
    }
    
    .delete-container span {
        margin-top: 10px !important;
    }
}

/* Status span styles */
.status-pending {
    color: #ffffff;
    font-size: 19px;
}

.status-label {
    color: rgba(255,255,255,0.7);
}
