.tmc-button-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 15px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 12px;
    max-width: 500px;
    margin-top: 2px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.tmc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    min-width: 100px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.tmc-button i {
    font-size: 0.95rem;
}

/* Create New Button */
#tmc-create-button {
    background: linear-gradient(45deg, #6366f1, #4f46e5);
    color: white;
}

#tmc-create-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(99, 102, 241, 0.3);
}

/* Refresh Button */
#tmc-refresh-button {
    background: linear-gradient(45deg, #10b981, #0da271);
    color: white;
}

#tmc-refresh-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(16, 185, 129, 0.3);
}

/* Forward Button - White Theme */
#tmc-forward-button {
    background: white;
    color: #0f172a;
    border: 1px solid #94a3b8;
}

#tmc-forward-button i {
    color: #6366f1;
}

#tmc-forward-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(255, 255, 255, 0.15);
    background: linear-gradient(45deg, #ffffff, #f1f1f1);
    border-color: #6366f1;
}

/* Simple Click Effect */
.tmc-button:active {
    transform: scale(0.97);
}

/* Ripple Effect */
.tmc-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: tmc-ripple 0.5s linear;
    pointer-events: none;
}

@keyframes tmc-ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    .tmc-button {
        padding: 8px 14px;
        font-size: 0.85rem;
        min-width: 90px;
    }
}

@media (max-width: 420px) {
    .tmc-button-container {
        gap: 8px;
    }

    .tmc-button {
        padding: 8px 12px;
        font-size: 0.8rem;
        min-width: 80px;
    }

    .tmc-button span {
        display: none;
    }

    .tmc-button i {
        font-size: 1rem;
        margin-right: 0;
    }
}

/* Instructions styling */
.tmc-instructions {
    max-width: 500px;
    margin: 20px auto;
    padding: 15px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: #f1f5f9;
    font-size: 0.9rem;
}

.tmc-instructions h3 {
    margin-top: 0;
    color: #6366f1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tmc-instructions ul {
    padding-left: 20px;
    margin: 10px 0;
}

.tmc-instructions li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.tmc-instructions code {
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}