/* Istniejące style pominięte dla zwięzłości */

.swapmaster-container {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    animation: fadeIn 0.5s ease-in-out;
}

.swapmaster-column {
    width: 48%;
    padding: 10px;
}

.swapmaster-column h3 {
    margin-top: 0;
    color: #333;
    font-size: 20px;
}

.swapmaster-column label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.swapmaster-column select,
.swapmaster-column input[type="number"],
.swapmaster-column input[type="text"],
.swapmaster-column input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.swapmaster-column select {
    padding-left: 50px;
    background-repeat: no-repeat;
    background-position: 5px center;
    background-size: 40px 40px;
}

.swapmaster-column select:focus,
.swapmaster-column input:focus {
    border-color: #0073aa;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.5);
    outline: none;
}

.swapmaster-column input[type="submit"] {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background 0.3s, transform 0.2s;
}

.swapmaster-column input[type="submit"]:hover {
    background: #005d87;
    transform: scale(1.05);
}

#swapmaster-fee {
    font-size: 16px;
    color: #e74c3c;
    margin-top: 10px;
    animation: slideIn 0.3s ease-in-out;
}

#swapmaster-result {
    font-size: 18px;
    color: #28a745;
    margin-top: 5px;
    animation: slideIn 0.3s ease-in-out;
}

.swapmaster-confirmation {
    text-align: center;
    color: #333;
    margin-top: 20px;
    animation: fadeIn 0.5s ease-in-out;
}

#swapmaster-from-system { background-image: url('../images/skrill.png'); }
#swapmaster-to-system { background-image: url('../images/revolut.png'); }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Stylizacja niestandardowej belki */
.swapmaster-toolbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0073aa;
    color: #fff;
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.swapmaster-toolbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    padding: 0 20px;
}

.swapmaster-toolbar-button {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    margin-left: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    transition: background 0.3s;
}

.swapmaster-toolbar-button:hover {
    background: rgba(255, 255, 255, 0.4);
}