.tmc-container {
    max-width: 400px;
    margin: 30px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    font-family: Arial, sans-serif;
}

.tmc-container h2 {
    margin-bottom: 10px;
}

.tmc-container input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

.tmc-container button {
    width: 100%;
    padding: 12px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}

.tmc-container button:hover {
    background: #ff0050;
}

#tmc-loader {
    margin: 15px auto;
    width: 40px;
    height: 40px;
    border: 4px solid #eee;
    border-top: 4px solid #ff0050;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

#tmc-result {
    margin-top: 15px;
    font-size: 16px;
}

.tmc-success {
    color: green;
    font-weight: bold;
}

.tmc-fail {
    color: red;
    font-weight: bold;
}
