.mtg-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mtg-form {
    margin-bottom: 20px;
}

.mtg-field {
    margin-bottom: 15px;
}

.mtg-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.mtg-field input,
.mtg-field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.mtg-button {
    padding: 10px 20px;
    background: #2271b1;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.mtg-button:hover {
    background: #135e96;
}

.mtg-results {
    display: none;
}

.mtg-tabs {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.mtg-tab {
    padding: 10px 15px;
    background: #f1f1f1;
    border: none;
    cursor: pointer;
}

.mtg-tab.active {
    background: #2271b1;
    color: white;
}

.mtg-tab-content {
    display: none;
}

.mtg-tab-content.active {
    display: block;
}

.mtg-tab-content textarea {
    width: 100%;
    min-height: 150px;
    margin-bottom: 15px;
}

.mtg-actions {
    display: flex;
    gap: 10px;
}