.mc-cmd-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.mc-cmd-header {
    text-align: center;
    margin-bottom: 30px;
}

.mc-cmd-header h1 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.mc-cmd-form {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.mb-3 label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.mb-3 input,
.mb-3 select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.mb-3 select {
    background: white;
}

.enchantment-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: flex-end;
}

.enchantment-row select,
.enchantment-row input {
    flex: 1;
}

.remove-enchant,
#addEnchantment {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.remove-enchant {
    background: #e74c3c;
    color: white;
}

#addEnchantment {
    background: #3498db;
    color: white;
    margin-top: 10px;
}

.btn-success {
    background: #27ae60;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
}

.btn-success:hover {
    background: #219a52;
}

.mt-4 {
    background: #2c3e50;
    color: white;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.mt-4 h5 {
    margin-top: 0;
    margin-bottom: 15px;
}

#commandOutput {
    background: #34495e;
    padding: 15px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    white-space: pre-wrap;
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 15px;
}

.copy-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #3498db;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.copy-btn:hover {
    background: #2980b9;
}

.alert-danger {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .enchantment-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .remove-enchant,
    #addEnchantment {
        align-self: stretch;
        margin-top: 10px;
    }
}