/* Button Styles */
.btn, button, input[type="submit"], input[type="button"] {
    display: inline-block;
    padding: 10px 20px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Button Variants */
.btn.secondary, button.secondary {
    background: #6c757d;
}

.btn.secondary:hover, button.secondary:hover {
    background: #5a6268;
}

.btn.success, button.success {
    background: #28a745;
}

.btn.success:hover, button.success:hover {
    background: #218838;
}

.btn.danger, button.danger {
    background: #dc3545;
}

.btn.danger:hover, button.danger:hover {
    background: #c82333;
}

.btn.primary, button.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn.primary:hover, button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Button Sizes */
.btn-small {
    padding: 6px 12px;
    font-size: 12px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Button States */
button:disabled, input[type="submit"]:disabled, .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Specific Button Classes */
.btn-create, .btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-cancel, .btn-cancel-edit {
    background: #6c757d;
}

.btn-edit {
    background: #17a2b8;
}

.btn-edit:hover {
    background: #138496;
}

.btn-play {
    background: #28a745;
}

.btn-play:hover {
    background: #218838;
}

.btn-control {
    background: #ffc107;
    color: #333;
}

.btn-control:hover {
    background: #e0a800;
    color: #333;
}

.btn-view {
    background: #17a2b8;
}

.btn-view:hover {
    background: #138496;
}

.btn-archive {
    background: #6c757d;
}

.btn-archive:hover {
    background: #5a6268;
}
